pub struct PkAuthenticator {
pub cusec: ExplicitContextTag0<IntegerAsn1>,
pub ctime: ExplicitContextTag1<KerberosTime>,
pub nonce: ExplicitContextTag2<IntegerAsn1>,
pub pa_checksum: Optional<Option<ExplicitContextTag3<OctetStringAsn1>>>,
}Expand description
PKAuthenticator ::= SEQUENCE {
cusec [0] INTEGER (0..999999),
ctime [1] KerberosTime,
nonce [2] INTEGER (0..4294967295),
paChecksum [3] OCTET STRING OPTIONAL,
}Fields§
§cusec: ExplicitContextTag0<IntegerAsn1>§ctime: ExplicitContextTag1<KerberosTime>§nonce: ExplicitContextTag2<IntegerAsn1>§pa_checksum: Optional<Option<ExplicitContextTag3<OctetStringAsn1>>>Trait Implementations§
Source§impl Clone for PkAuthenticator
impl Clone for PkAuthenticator
Source§fn clone(&self) -> PkAuthenticator
fn clone(&self) -> PkAuthenticator
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 PkAuthenticator
impl Debug for PkAuthenticator
Source§impl<'de> Deserialize<'de> for PkAuthenticator
impl<'de> Deserialize<'de> for PkAuthenticator
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 PkAuthenticator
impl PartialEq for PkAuthenticator
Source§impl Serialize for PkAuthenticator
impl Serialize for PkAuthenticator
impl Eq for PkAuthenticator
impl StructuralPartialEq for PkAuthenticator
Auto Trait Implementations§
impl Freeze for PkAuthenticator
impl RefUnwindSafe for PkAuthenticator
impl Send for PkAuthenticator
impl Sync for PkAuthenticator
impl Unpin for PkAuthenticator
impl UnsafeUnpin for PkAuthenticator
impl UnwindSafe for PkAuthenticator
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