pub struct AuthenticatorInner {
pub authenticator_vno: ExplicitContextTag0<IntegerAsn1>,
pub crealm: ExplicitContextTag1<Realm>,
pub cname: ExplicitContextTag2<PrincipalName>,
pub cksum: Optional<Option<ExplicitContextTag3<Checksum>>>,
pub cusec: ExplicitContextTag4<Microseconds>,
pub ctime: ExplicitContextTag5<KerberosTime>,
pub subkey: Optional<Option<ExplicitContextTag6<EncryptionKey>>>,
pub seq_number: Optional<Option<ExplicitContextTag7<IntegerAsn1>>>,
pub authorization_data: Optional<Option<ExplicitContextTag8<AuthorizationData>>>,
}Expand description
Authenticator ::= [APPLICATION 2] SEQUENCE {
authenticator-vno [0] INTEGER (5),
crealm [1] Realm,
cname [2] PrincipalName,
cksum [3] Checksum OPTIONAL,
cusec [4] Microseconds,
ctime [5] KerberosTime,
subkey [6] EncryptionKey OPTIONAL,
seq-number [7] UInt32 OPTIONAL,
authorization-data [8] AuthorizationData OPTIONAL
}Fields§
§authenticator_vno: ExplicitContextTag0<IntegerAsn1>§crealm: ExplicitContextTag1<Realm>§cname: ExplicitContextTag2<PrincipalName>§cksum: Optional<Option<ExplicitContextTag3<Checksum>>>§cusec: ExplicitContextTag4<Microseconds>§ctime: ExplicitContextTag5<KerberosTime>§subkey: Optional<Option<ExplicitContextTag6<EncryptionKey>>>§seq_number: Optional<Option<ExplicitContextTag7<IntegerAsn1>>>Trait Implementations§
Source§impl Clone for AuthenticatorInner
impl Clone for AuthenticatorInner
Source§fn clone(&self) -> AuthenticatorInner
fn clone(&self) -> AuthenticatorInner
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 AuthenticatorInner
impl Debug for AuthenticatorInner
Source§impl<'de> Deserialize<'de> for AuthenticatorInner
impl<'de> Deserialize<'de> for AuthenticatorInner
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
Source§impl PartialEq for AuthenticatorInner
impl PartialEq for AuthenticatorInner
Source§impl Serialize for AuthenticatorInner
impl Serialize for AuthenticatorInner
impl Eq for AuthenticatorInner
impl StructuralPartialEq for AuthenticatorInner
Auto Trait Implementations§
impl Freeze for AuthenticatorInner
impl RefUnwindSafe for AuthenticatorInner
impl Send for AuthenticatorInner
impl Sync for AuthenticatorInner
impl Unpin for AuthenticatorInner
impl UnsafeUnpin for AuthenticatorInner
impl UnwindSafe for AuthenticatorInner
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