Struct kanidmd_lib::idm::server::IdmServer
source · pub struct IdmServer { /* private fields */ }
Implementations§
source§impl IdmServer
impl IdmServer
pub async fn new( qs: QueryServer, origin: &str, ) -> Result<(IdmServer, IdmServerDelayed, IdmServerAudit), OperationError>
sourcepub async fn auth(&self) -> Result<IdmServerAuthTransaction<'_>, OperationError>
pub async fn auth(&self) -> Result<IdmServerAuthTransaction<'_>, OperationError>
Start an auth txn
sourcepub fn domain_read(&self) -> DomainInfoRead
pub fn domain_read(&self) -> DomainInfoRead
Begin a fast (low cost) read of the servers domain info. It is important to note this does not conflict with any other type of transaction type and may safely beheld over other transaction boundaries.
sourcepub async fn proxy_read(
&self,
) -> Result<IdmServerProxyReadTransaction<'_>, OperationError>
pub async fn proxy_read( &self, ) -> Result<IdmServerProxyReadTransaction<'_>, OperationError>
Read from the database, in a transaction.
pub async fn proxy_write( &self, ts: Duration, ) -> Result<IdmServerProxyWriteTransaction<'_>, OperationError>
pub async fn cred_update_transaction( &self, ) -> Result<IdmServerCredUpdateTransaction<'_>, OperationError>
Auto Trait Implementations§
impl !Freeze for IdmServer
impl !RefUnwindSafe for IdmServer
impl Send for IdmServer
impl Sync for IdmServer
impl Unpin for IdmServer
impl !UnwindSafe for IdmServer
Blanket Implementations§
§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request