Trait IStream_Impl
pub trait IStream_Impl: ISequentialStream_Impl {
    // Required methods
    fn Seek(
        &self,
        dlibmove: i64,
        dworigin: STREAM_SEEK,
        plibnewposition: *mut u64,
    ) -> Result<()>;
    fn SetSize(&self, libnewsize: u64) -> Result<()>;
    fn CopyTo(
        &self,
        pstm: Ref<'_, IStream>,
        cb: u64,
        pcbread: *mut u64,
        pcbwritten: *mut u64,
    ) -> Result<()>;
    fn Commit(&self, grfcommitflags: &STGC) -> Result<()>;
    fn Revert(&self) -> Result<()>;
    fn LockRegion(
        &self,
        liboffset: u64,
        cb: u64,
        dwlocktype: &LOCKTYPE,
    ) -> Result<()>;
    fn UnlockRegion(
        &self,
        liboffset: u64,
        cb: u64,
        dwlocktype: u32,
    ) -> Result<()>;
    fn Stat(&self, pstatstg: *mut STATSTG, grfstatflag: &STATFLAG) -> Result<()>;
    fn Clone(&self) -> Result<IStream>;
}Required Methods§
fn Seek( &self, dlibmove: i64, dworigin: STREAM_SEEK, plibnewposition: *mut u64, ) -> Result<()>
fn SetSize(&self, libnewsize: u64) -> Result<()>
fn CopyTo( &self, pstm: Ref<'_, IStream>, cb: u64, pcbread: *mut u64, pcbwritten: *mut u64, ) -> Result<()>
fn Commit(&self, grfcommitflags: &STGC) -> Result<()>
fn Revert(&self) -> Result<()>
fn LockRegion( &self, liboffset: u64, cb: u64, dwlocktype: &LOCKTYPE, ) -> Result<()>
fn UnlockRegion(&self, liboffset: u64, cb: u64, dwlocktype: u32) -> Result<()>
fn Stat(&self, pstatstg: *mut STATSTG, grfstatflag: &STATFLAG) -> Result<()>
fn Clone(&self) -> Result<IStream>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.