[][src]Struct CCODE::IMarshalingStreamVtbl

#[repr(C)]pub struct IMarshalingStreamVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> ULONG>,
    pub Read: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pv: *mut c_void, cb: ULONG, pcbRead: *mut ULONG) -> HRESULT>,
    pub Write: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pv: *const c_void, cb: ULONG, pcbWritten: *mut ULONG) -> HRESULT>,
    pub Seek: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, dlibMove: LARGE_INTEGER, dwOrigin: DWORD, plibNewPosition: *mut ULARGE_INTEGER) -> HRESULT>,
    pub SetSize: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libNewSize: ULARGE_INTEGER) -> HRESULT>,
    pub CopyTo: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pstm: *mut IStream, cb: ULARGE_INTEGER, pcbRead: *mut ULARGE_INTEGER, pcbWritten: *mut ULARGE_INTEGER) -> HRESULT>,
    pub Commit: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, grfCommitFlags: DWORD) -> HRESULT>,
    pub Revert: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> HRESULT>,
    pub LockRegion: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libOffset: ULARGE_INTEGER, cb: ULARGE_INTEGER, dwLockType: DWORD) -> HRESULT>,
    pub UnlockRegion: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libOffset: ULARGE_INTEGER, cb: ULARGE_INTEGER, dwLockType: DWORD) -> HRESULT>,
    pub Stat: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pstatstg: *mut STATSTG, grfStatFlag: DWORD) -> HRESULT>,
    pub Clone: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, ppstm: *mut *mut IStream) -> HRESULT>,
    pub GetMarshalingContextAttribute: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, attribute: CO_MARSHALING_CONTEXT_ATTRIBUTES, pAttributeValue: *mut ULONG_PTR) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> ULONG>Read: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pv: *mut c_void, cb: ULONG, pcbRead: *mut ULONG) -> HRESULT>Write: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pv: *const c_void, cb: ULONG, pcbWritten: *mut ULONG) -> HRESULT>Seek: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, dlibMove: LARGE_INTEGER, dwOrigin: DWORD, plibNewPosition: *mut ULARGE_INTEGER) -> HRESULT>SetSize: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libNewSize: ULARGE_INTEGER) -> HRESULT>CopyTo: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pstm: *mut IStream, cb: ULARGE_INTEGER, pcbRead: *mut ULARGE_INTEGER, pcbWritten: *mut ULARGE_INTEGER) -> HRESULT>Commit: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, grfCommitFlags: DWORD) -> HRESULT>Revert: Option<unsafe extern "C" fn(This: *mut IMarshalingStream) -> HRESULT>LockRegion: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libOffset: ULARGE_INTEGER, cb: ULARGE_INTEGER, dwLockType: DWORD) -> HRESULT>UnlockRegion: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, libOffset: ULARGE_INTEGER, cb: ULARGE_INTEGER, dwLockType: DWORD) -> HRESULT>Stat: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, pstatstg: *mut STATSTG, grfStatFlag: DWORD) -> HRESULT>Clone: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, ppstm: *mut *mut IStream) -> HRESULT>GetMarshalingContextAttribute: Option<unsafe extern "C" fn(This: *mut IMarshalingStream, attribute: CO_MARSHALING_CONTEXT_ATTRIBUTES, pAttributeValue: *mut ULONG_PTR) -> HRESULT>

Trait Implementations

impl Clone for IMarshalingStreamVtbl[src]

impl Copy for IMarshalingStreamVtbl[src]

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