pub trait IPrintOptionDetails_Impl: Sized {
    // Required methods
    fn OptionId(&self) -> Result<HSTRING>;
    fn OptionType(&self) -> Result<PrintOptionType>;
    fn SetErrorText(&self, value: &HSTRING) -> Result<()>;
    fn ErrorText(&self) -> Result<HSTRING>;
    fn SetState(&self, value: PrintOptionStates) -> Result<()>;
    fn State(&self) -> Result<PrintOptionStates>;
    fn Value(&self) -> Result<IInspectable>;
    fn TrySetValue(&self, value: Option<&IInspectable>) -> Result<bool>;
}

Required Methods§

fn OptionId(&self) -> Result<HSTRING>

fn OptionType(&self) -> Result<PrintOptionType>

fn SetErrorText(&self, value: &HSTRING) -> Result<()>

fn ErrorText(&self) -> Result<HSTRING>

fn SetState(&self, value: PrintOptionStates) -> Result<()>

fn State(&self) -> Result<PrintOptionStates>

fn Value(&self) -> Result<IInspectable>

fn TrySetValue(&self, value: Option<&IInspectable>) -> Result<bool>

Object Safety§

This trait is not object safe.

Implementors§