#[repr(C)]pub struct KERB_DECRYPT_REQUEST {
    pub MessageType: KERB_PROTOCOL_MESSAGE_TYPE,
    pub LogonId: LUID,
    pub Flags: ULONG,
    pub CryptoType: LONG,
    pub KeyUsage: LONG,
    pub Key: KERB_CRYPTO_KEY,
    pub EncryptedDataSize: ULONG,
    pub InitialVectorSize: ULONG,
    pub InitialVector: PUCHAR,
    pub EncryptedData: PUCHAR,
}Fields
MessageType: KERB_PROTOCOL_MESSAGE_TYPELogonId: LUIDFlags: ULONGCryptoType: LONGKeyUsage: LONGKey: KERB_CRYPTO_KEYEncryptedDataSize: ULONGInitialVectorSize: ULONGInitialVector: PUCHAREncryptedData: PUCHARTrait Implementations
sourceimpl Clone for KERB_DECRYPT_REQUEST
 
impl Clone for KERB_DECRYPT_REQUEST
sourcefn clone(&self) -> KERB_DECRYPT_REQUEST
 
fn clone(&self) -> KERB_DECRYPT_REQUEST
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for KERB_DECRYPT_REQUEST
Auto Trait Implementations
impl RefUnwindSafe for KERB_DECRYPT_REQUEST
impl !Send for KERB_DECRYPT_REQUEST
impl !Sync for KERB_DECRYPT_REQUEST
impl Unpin for KERB_DECRYPT_REQUEST
impl UnwindSafe for KERB_DECRYPT_REQUEST
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more