[][src]Struct ms_pac::S4U_DELEGATION_INFO

pub struct S4U_DELEGATION_INFO {
    pub S4U2proxyTarget: RPC_UNICODE_STRING,
    pub TransitedListSize: ULONG,
    pub S4UTransitedServices: Vec<RPC_UNICODE_STRING>,
}
typedef struct _S4U_DELEGATION_INFO {
  RPC_UNICODE_STRING S4U2proxyTarget;
  ULONG TransitedListSize;
  [size_is( TransitedListSize )]
  PRPC_UNICODE_STRING S4UTransitedServices;
} S4U_DELEGATION_INFO, * PS4U_DELEGATION_INFO;

Fields

S4U2proxyTarget: RPC_UNICODE_STRINGTransitedListSize: ULONGS4UTransitedServices: Vec<RPC_UNICODE_STRING>

Trait Implementations

impl Clone for S4U_DELEGATION_INFO[src]

impl Debug for S4U_DELEGATION_INFO[src]

impl PartialEq<S4U_DELEGATION_INFO> for S4U_DELEGATION_INFO[src]

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