pub struct PkiEnvironmentProvider(/* private fields */);Implementations§
Source§impl PkiEnvironmentProvider
impl PkiEnvironmentProvider
pub async fn refresh_time_of_interest(&self)
pub async fn borrow(&self) -> RwLockReadGuard<'_, Option<RjtPkiEnvironment>>
pub async fn is_env_setup(&self) -> bool
pub async fn update_env(&self, env: Option<RjtPkiEnvironment>)
Trait Implementations§
Source§impl AuthenticationServiceDelegate for PkiEnvironmentProvider
impl AuthenticationServiceDelegate for PkiEnvironmentProvider
Source§impl Clone for PkiEnvironmentProvider
impl Clone for PkiEnvironmentProvider
Source§fn clone(&self) -> PkiEnvironmentProvider
fn clone(&self) -> PkiEnvironmentProvider
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PkiEnvironmentProvider
impl Debug for PkiEnvironmentProvider
Source§impl Default for PkiEnvironmentProvider
impl Default for PkiEnvironmentProvider
Source§fn default() -> PkiEnvironmentProvider
fn default() -> PkiEnvironmentProvider
Returns the “default value” for a type. Read more
Source§impl From<PkiEnvironment> for PkiEnvironmentProvider
impl From<PkiEnvironment> for PkiEnvironmentProvider
Source§fn from(value: RjtPkiEnvironment) -> Self
fn from(value: RjtPkiEnvironment) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PkiEnvironmentProvider
impl !RefUnwindSafe for PkiEnvironmentProvider
impl Send for PkiEnvironmentProvider
impl Sync for PkiEnvironmentProvider
impl Unpin for PkiEnvironmentProvider
impl !UnwindSafe for PkiEnvironmentProvider
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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