[][src]Struct ms_dtyp::RPC_SID

pub struct RPC_SID {
    pub Revision: u8,
    pub IdentifierAuthority: RPC_SID_IDENTIFIER_AUTHORITY,
    pub SubAuthority: Vec<u32>,
}

typedef struct _RPC_SID { unsigned char Revision; unsigned char SubAuthorityCount; RPC_SID_IDENTIFIER_AUTHORITY IdentifierAuthority; [size_is(SubAuthorityCount)] unsigned long SubAuthority[]; } RPC_SID, *PRPC_S

Fields

Revision: u8IdentifierAuthority: RPC_SID_IDENTIFIER_AUTHORITYSubAuthority: Vec<u32>

Trait Implementations

impl Clone for RPC_SID[src]

impl Debug for RPC_SID[src]

impl Default for RPC_SID[src]

impl PartialEq<RPC_SID> for RPC_SID[src]

impl StructuralPartialEq for RPC_SID[src]

impl<'_> TryFrom<&'_ str> for RPC_SID[src]

type Error = String

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for RPC_SID

impl Send for RPC_SID

impl Sync for RPC_SID

impl Unpin for RPC_SID

impl UnwindSafe for RPC_SID

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.