pub trait ISdo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn GetPropertyInfo(&self, id: i32) -> Result<IUnknown>;
    fn GetProperty(&self, id: i32) -> Result<VARIANT>;
    fn PutProperty(&self, id: i32, pvalue: *const VARIANT) -> Result<()>;
    fn ResetProperty(&self, id: i32) -> Result<()>;
    fn Apply(&self) -> Result<()>;
    fn Restore(&self) -> Result<()>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn GetPropertyInfo(&self, id: i32) -> Result<IUnknown>

fn GetProperty(&self, id: i32) -> Result<VARIANT>

fn PutProperty(&self, id: i32, pvalue: *const VARIANT) -> Result<()>

fn ResetProperty(&self, id: i32) -> Result<()>

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

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

fn _NewEnum(&self) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§