pub struct X509CredentialConfiguration {
pub acme_directory_url: String,
pub sign_alg: JwsAlgorithm,
pub hash_alg: HashAlgorithm,
pub display_name: String,
pub client_id: ClientId,
pub handle: String,
pub domain: String,
pub team: Option<String>,
pub validity_period: Duration,
}Fields§
§acme_directory_url: String§sign_alg: JwsAlgorithm§hash_alg: HashAlgorithm§display_name: String§client_id: ClientId§handle: String§domain: String§team: Option<String>§validity_period: DurationTrait Implementations§
Source§impl Debug for X509CredentialConfiguration
impl Debug for X509CredentialConfiguration
Source§impl<'de> Deserialize<'de> for X509CredentialConfiguration
impl<'de> Deserialize<'de> for X509CredentialConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for X509CredentialConfiguration
impl RefUnwindSafe for X509CredentialConfiguration
impl Send for X509CredentialConfiguration
impl Sync for X509CredentialConfiguration
impl Unpin for X509CredentialConfiguration
impl UnsafeUnpin 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