[][src]Struct kerberos_asn1::AdKdcIssued

pub struct AdKdcIssued {
    pub ad_checksum: Checksum,
    pub i_realm: Option<Realm>,
    pub i_sname: Option<PrincipalName>,
    pub elements: AuthorizationData,
}

(AD-KDCIssued) Type of AuthorizationData. Defined in RFC4120, section 5.2.6.2.

AD-KDCIssued            ::= SEQUENCE {
       ad-checksum     [0] Checksum,
       i-realm         [1] Realm OPTIONAL,
       i-sname         [2] PrincipalName OPTIONAL,
       elements        [3] AuthorizationData
}

Fields

ad_checksum: Checksumi_realm: Option<Realm>i_sname: Option<PrincipalName>elements: AuthorizationData

Trait Implementations

impl Asn1Object for AdKdcIssued[src]

impl Clone for AdKdcIssued[src]

impl Debug for AdKdcIssued[src]

impl Default for AdKdcIssued[src]

impl PartialEq<AdKdcIssued> for AdKdcIssued[src]

impl StructuralPartialEq for AdKdcIssued[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.