[][src]Struct CCODE::_STORAGE_PROTOCOL_COMMAND

#[repr(C)]pub struct _STORAGE_PROTOCOL_COMMAND {
    pub Version: DWORD,
    pub Length: DWORD,
    pub ProtocolType: STORAGE_PROTOCOL_TYPE,
    pub Flags: DWORD,
    pub ReturnStatus: DWORD,
    pub ErrorCode: DWORD,
    pub CommandLength: DWORD,
    pub ErrorInfoLength: DWORD,
    pub DataToDeviceTransferLength: DWORD,
    pub DataFromDeviceTransferLength: DWORD,
    pub TimeOutValue: DWORD,
    pub ErrorInfoOffset: DWORD,
    pub DataToDeviceBufferOffset: DWORD,
    pub DataFromDeviceBufferOffset: DWORD,
    pub CommandSpecific: DWORD,
    pub Reserved0: DWORD,
    pub FixedProtocolReturnData: DWORD,
    pub Reserved1: [DWORD; 3],
    pub Command: [BYTE; 1],
}

Fields

Version: DWORDLength: DWORDProtocolType: STORAGE_PROTOCOL_TYPEFlags: DWORDReturnStatus: DWORDErrorCode: DWORDCommandLength: DWORDErrorInfoLength: DWORDDataToDeviceTransferLength: DWORDDataFromDeviceTransferLength: DWORDTimeOutValue: DWORDErrorInfoOffset: DWORDDataToDeviceBufferOffset: DWORDDataFromDeviceBufferOffset: DWORDCommandSpecific: DWORDReserved0: DWORDFixedProtocolReturnData: DWORDReserved1: [DWORD; 3]Command: [BYTE; 1]

Trait Implementations

impl Clone for _STORAGE_PROTOCOL_COMMAND[src]

impl Copy for _STORAGE_PROTOCOL_COMMAND[src]

impl Debug for _STORAGE_PROTOCOL_COMMAND[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.