[][src]Struct winapi::um::objidlbase::IMarshalingStream

#[repr(C)]
pub struct IMarshalingStream { pub lpVtbl: *const IMarshalingStreamVtbl, }

Fields

lpVtbl: *const IMarshalingStreamVtbl

Methods

impl IMarshalingStream[src]

pub unsafe fn GetMarshalingContextAttribute(
    &self,
    attribute: CO_MARSHALING_CONTEXT_ATTRIBUTES,
    pAttributeValue: *mut ULONG_PTR
) -> HRESULT
[src]

Methods from Deref<Target = IStream>

pub unsafe fn Seek(
    &self,
    dlibMove: LARGE_INTEGER,
    dwOrigin: DWORD,
    plibNewPosition: *mut ULARGE_INTEGER
) -> HRESULT
[src]

pub unsafe fn SetSize(&self, libNewSize: ULARGE_INTEGER) -> HRESULT[src]

pub unsafe fn CopyTo(
    &self,
    pstm: *mut IStream,
    cb: ULARGE_INTEGER,
    pcbRead: *mut ULARGE_INTEGER,
    pcbWritten: *mut ULARGE_INTEGER
) -> HRESULT
[src]

pub unsafe fn Commit(&self, grfCommitFlags: DWORD) -> HRESULT[src]

pub unsafe fn Revert(&self) -> HRESULT[src]

pub unsafe fn LockRegion(
    &self,
    libOffset: ULARGE_INTEGER,
    cb: ULARGE_INTEGER,
    dwLockType: DWORD
) -> HRESULT
[src]

pub unsafe fn UnlockRegion(
    &self,
    libOffset: ULARGE_INTEGER,
    cb: ULARGE_INTEGER,
    dwLockType: DWORD
) -> HRESULT
[src]

pub unsafe fn Stat(&self, pstatstg: *mut STATSTG, grfStatFlag: DWORD) -> HRESULT[src]

pub unsafe fn Clone(&self, ppstm: *mut *mut IStream) -> HRESULT[src]

Trait Implementations

impl Interface for IMarshalingStream[src]

impl Deref for IMarshalingStream[src]

type Target = IStream

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]