[][src]Struct kerberos_asn1::PaForUser

pub struct PaForUser {
    pub username: PrincipalName,
    pub userrealm: Realm,
    pub cksum: Checksum,
    pub auth_package: KerberosString,
}

(PA-FOR-USER) Used in S4U2Self, to specify user to impersonate. Defined in MS-SFU, section 2.2.1.

PA-FOR-USER ::= SEQUENCE {
   -- PA TYPE 129
   userName     [0] PrincipalName,
   userRealm    [1] Realm,
   cksum        [2] Checksum,
   auth-package [3] KerberosString
}

Fields

username: PrincipalNameuserrealm: Realmcksum: Checksumauth_package: KerberosString

Trait Implementations

impl Asn1Object for PaForUser[src]

impl Clone for PaForUser[src]

impl Debug for PaForUser[src]

impl Default for PaForUser[src]

impl PartialEq<PaForUser> for PaForUser[src]

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