pub trait IOptionDescription_Impl: Sized {
    // Required methods
    fn Id(&self) -> Result<PWSTR>;
    fn Heading(&self) -> Result<PWSTR>;
    fn Description(&self) -> Result<PWSTR>;
    fn Labels(&self) -> Result<IEnumString>;
}

Required Methods§

fn Id(&self) -> Result<PWSTR>

fn Heading(&self) -> Result<PWSTR>

fn Description(&self) -> Result<PWSTR>

fn Labels(&self) -> Result<IEnumString>

Object Safety§

This trait is not object safe.

Implementors§