pub trait IInitializeCommand_Impl: Sized {
    // Required method
    fn Initialize(
        &self,
        pszcommandname: &PCWSTR,
        ppb: Option<&IPropertyBag>
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, pszcommandname: &PCWSTR, ppb: Option<&IPropertyBag> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§