[][src]Struct kerberos_asn1::AdAndOr

pub struct AdAndOr {
    pub condition_count: Int32,
    pub elements: AuthorizationData,
}

(AD-AND-OR) Type of AuthorizationData. Defined in RFC4120, section 5.2.6.3.

AD-AND-OR               ::= SEQUENCE {
       condition-count [0] Int32,
       elements        [1] AuthorizationData
}

Fields

condition_count: Int32elements: AuthorizationData

Trait Implementations

impl Asn1Object for AdAndOr[src]

impl Clone for AdAndOr[src]

impl Debug for AdAndOr[src]

impl Default for AdAndOr[src]

impl PartialEq<AdAndOr> for AdAndOr[src]

impl StructuralPartialEq for AdAndOr[src]

Auto Trait Implementations

impl RefUnwindSafe for AdAndOr

impl Send for AdAndOr

impl Sync for AdAndOr

impl Unpin for AdAndOr

impl UnwindSafe for AdAndOr

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.