pub trait IPrinterScriptableStream_Impl: Sized + IPrinterScriptableSequentialStream_Impl {
    // Required methods
    fn Commit(&self) -> Result<()>;
    fn Seek(&self, loffset: i32, streamseek: STREAM_SEEK) -> Result<i32>;
    fn SetSize(&self, lsize: i32) -> Result<()>;
}

Required Methods§

fn Commit(&self) -> Result<()>

fn Seek(&self, loffset: i32, streamseek: STREAM_SEEK) -> Result<i32>

fn SetSize(&self, lsize: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§