[][src]Struct kerberos_asn1::ApReq

pub struct ApReq {
    pub pvno: Int32,
    pub msg_type: Int32,
    pub ap_options: ApOptions,
    pub ticket: Ticket,
    pub authenticator: EncryptedData,
}

(AP-REQ) Message sent to the application server to authenticate the client. Defined in RFC4120, section 5.5.1.

 AP-REQ          ::= [APPLICATION 14] SEQUENCE {
        pvno            [0] INTEGER (5),
        msg-type        [1] INTEGER (14),
        ap-options      [2] APOptions,
        ticket          [3] Ticket,
        authenticator   [4] EncryptedData -- Authenticator
 }

Fields

pvno: Int32msg_type: Int32ap_options: ApOptionsticket: Ticketauthenticator: EncryptedData

Trait Implementations

impl Asn1Object for ApReq[src]

impl Clone for ApReq[src]

impl Debug for ApReq[src]

impl Default for ApReq[src]

impl PartialEq<ApReq> for ApReq[src]

impl StructuralPartialEq for ApReq[src]

Auto Trait Implementations

impl RefUnwindSafe for ApReq

impl Send for ApReq

impl Sync for ApReq

impl Unpin for ApReq

impl UnwindSafe for ApReq

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.