Trait MenuItem_Impl
pub trait MenuItem_Impl: 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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.