[−][src]Struct CCODE::IMarshalingStreamVtbl
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]
pub fn clone(&self) -> IMarshalingStreamVtbl[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for IMarshalingStreamVtbl[src]
impl Debug for IMarshalingStreamVtbl[src]
Auto Trait Implementations
impl RefUnwindSafe for IMarshalingStreamVtbl
impl Send for IMarshalingStreamVtbl
impl Sync for IMarshalingStreamVtbl
impl Unpin for IMarshalingStreamVtbl
impl UnwindSafe for IMarshalingStreamVtbl
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,