pub trait IIsoImageManager_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Path(&self) -> Result<BSTR>;
    fn Stream(&self) -> Result<IStream>;
    fn SetPath(&self, val: &BSTR) -> Result<()>;
    fn SetStream(&self, data: Option<&IStream>) -> Result<()>;
    fn Validate(&self) -> Result<()>;
}

Required Methods§

fn Path(&self) -> Result<BSTR>

fn Stream(&self) -> Result<IStream>

fn SetPath(&self, val: &BSTR) -> Result<()>

fn SetStream(&self, data: Option<&IStream>) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§