pub trait MenuItem_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn DisplayName(&self) -> Result<BSTR>;
    fn LanguageIndependentName(&self) -> Result<BSTR>;
    fn Path(&self) -> Result<BSTR>;
    fn LanguageIndependentPath(&self) -> Result<BSTR>;
    fn Execute(&self) -> Result<()>;
    fn Enabled(&self) -> Result<BOOL>;
}

Required Methods§

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

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

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

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

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

fn Enabled(&self) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§