pub trait IConsoleVerb_Impl: Sized {
    // Required methods
    fn GetVerbState(
        &self,
        ecmdid: MMC_CONSOLE_VERB,
        nstate: MMC_BUTTON_STATE
    ) -> Result<BOOL>;
    fn SetVerbState(
        &self,
        ecmdid: MMC_CONSOLE_VERB,
        nstate: MMC_BUTTON_STATE,
        bstate: BOOL
    ) -> Result<()>;
    fn SetDefaultVerb(&self, ecmdid: MMC_CONSOLE_VERB) -> Result<()>;
    fn GetDefaultVerb(&self) -> Result<MMC_CONSOLE_VERB>;
}

Required Methods§

fn GetVerbState( &self, ecmdid: MMC_CONSOLE_VERB, nstate: MMC_BUTTON_STATE ) -> Result<BOOL>

fn SetVerbState( &self, ecmdid: MMC_CONSOLE_VERB, nstate: MMC_BUTTON_STATE, bstate: BOOL ) -> Result<()>

fn SetDefaultVerb(&self, ecmdid: MMC_CONSOLE_VERB) -> Result<()>

fn GetDefaultVerb(&self) -> Result<MMC_CONSOLE_VERB>

Object Safety§

This trait is not object safe.

Implementors§