pub struct IdmServer { /* private fields */ }Implementations§
Source§impl IdmServer
impl IdmServer
pub async fn new( qs: QueryServer, origin: &Url, is_integration_test: bool, current_time: Duration, ) -> 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, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> 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 more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].