[][src]Struct kerberos_asn1::AsReq

pub struct AsReq {
    pub pvno: Int32,
    pub msg_type: Int32,
    pub padata: Option<SequenceOf<PaData>>,
    pub req_body: KdcReqBody,
}

(AS-REQ) Message used to request a TGT.

AS-REQ          ::= [APPLICATION 10] KDC-REQ

KDC-REQ         ::= SEQUENCE {
       -- NOTE: first tag is [1], not [0]
       pvno            [1] INTEGER (5) ,
       msg-type        [2] INTEGER (10 -- AS -- | 12 -- TGS --),
       padata          [3] SEQUENCE OF PA-DATA OPTIONAL
                           -- NOTE: not empty --,
       req-body        [4] KDC-REQ-BODY
}

Fields

pvno: Int32msg_type: Int32padata: Option<SequenceOf<PaData>>req_body: KdcReqBody

Trait Implementations

impl Asn1Object for AsReq[src]

impl Clone for AsReq[src]

impl Debug for AsReq[src]

impl Default for AsReq[src]

impl From<AsReq> for KdcReq[src]

impl From<KdcReq> for AsReq[src]

impl PartialEq<AsReq> for AsReq[src]

impl StructuralPartialEq for AsReq[src]

Auto Trait Implementations

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.