pub trait ITaskVariables_Impl: Sized {
    // Required methods
    fn GetInput(&self) -> Result<BSTR>;
    fn SetOutput(&self, input: &BSTR) -> Result<()>;
    fn GetContext(&self) -> Result<BSTR>;
}

Required Methods§

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

fn SetOutput(&self, input: &BSTR) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§