pub struct X509CredentialConfiguration {
pub acme_url: String,
pub idp_url: String,
pub sign_alg: JwsAlgorithm,
pub hash_alg: HashAlgorithm,
pub display_name: String,
pub client_id: ClientId,
pub handle: String,
pub team: Option<String>,
pub validity_period: Duration,
}Fields§
§acme_url: String§idp_url: String§sign_alg: JwsAlgorithm§hash_alg: HashAlgorithm§display_name: String§client_id: ClientId§handle: String§team: Option<String>§validity_period: DurationTrait Implementations§
Auto Trait Implementations§
impl Freeze for X509CredentialConfiguration
impl RefUnwindSafe for X509CredentialConfiguration
impl Send for X509CredentialConfiguration
impl Sync for X509CredentialConfiguration
impl Unpin for X509CredentialConfiguration
impl UnwindSafe for X509CredentialConfiguration
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> 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