[][src]Struct kerberos_asn1::ApRep

pub struct ApRep {
    pub pvno: Int32,
    pub msg_type: Int32,
    pub enc_part: EncryptedData,
}

(AP-REP) Response to AP-REQ, sent when mutual authentication is selected. Defined in RFC4120, section 5.5.2.

AP-REP          ::= [APPLICATION 15] SEQUENCE {
       pvno            [0] INTEGER (5),
       msg-type        [1] INTEGER (15),
       enc-part        [2] EncryptedData -- EncAPRepPart
}

Fields

pvno: Int32msg_type: Int32enc_part: EncryptedData

Trait Implementations

impl Asn1Object for ApRep[src]

impl Clone for ApRep[src]

impl Debug for ApRep[src]

impl Default for ApRep[src]

impl PartialEq<ApRep> for ApRep[src]

impl StructuralPartialEq for ApRep[src]

Auto Trait Implementations

impl RefUnwindSafe for ApRep

impl Send for ApRep

impl Sync for ApRep

impl Unpin for ApRep

impl UnwindSafe for ApRep

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.