[][src]Struct kerberos_asn1::TgsRep

pub struct TgsRep {
    pub pvno: Int32,
    pub msg_type: Int32,
    pub padata: Option<SequenceOf<PaData>>,
    pub crealm: Realm,
    pub cname: PrincipalName,
    pub ticket: Ticket,
    pub enc_part: EncryptedData,
}

(TGS-REP) Message returned by KDC in response to TGS-REQ.

TGS-REP         ::= [APPLICATION 13] KDC-REP

KDC-REP         ::= SEQUENCE {
       pvno            [0] INTEGER (5),
       msg-type        [1] INTEGER (11 -- AS -- | 13 -- TGS --),
       padata          [2] SEQUENCE OF PA-DATA OPTIONAL
                               -- NOTE: not empty --,
       crealm          [3] Realm,
       cname           [4] PrincipalName,
       ticket          [5] Ticket,
       enc-part        [6] EncryptedData
                               -- EncASRepPart or EncTGSRepPart,
                               -- as appropriate
}

Fields

pvno: Int32msg_type: Int32padata: Option<SequenceOf<PaData>>crealm: Realmcname: PrincipalNameticket: Ticketenc_part: EncryptedData

Trait Implementations

impl Asn1Object for TgsRep[src]

impl Clone for TgsRep[src]

impl Debug for TgsRep[src]

impl Default for TgsRep[src]

impl PartialEq<TgsRep> for TgsRep[src]

impl StructuralPartialEq for TgsRep[src]

Auto Trait Implementations

impl RefUnwindSafe for TgsRep

impl Send for TgsRep

impl Sync for TgsRep

impl Unpin for TgsRep

impl UnwindSafe for TgsRep

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.