pub trait ITypeLibRegistration_Impl: Sized {
    // Required methods
    fn GetGuid(&self) -> Result<GUID>;
    fn GetVersion(&self) -> Result<BSTR>;
    fn GetLcid(&self) -> Result<u32>;
    fn GetWin32Path(&self) -> Result<BSTR>;
    fn GetWin64Path(&self) -> Result<BSTR>;
    fn GetDisplayName(&self) -> Result<BSTR>;
    fn GetFlags(&self) -> Result<u32>;
    fn GetHelpDir(&self) -> Result<BSTR>;
}

Required Methods§

fn GetGuid(&self) -> Result<GUID>

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

fn GetLcid(&self) -> Result<u32>

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

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

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

fn GetFlags(&self) -> Result<u32>

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

Object Safety§

This trait is not object safe.

Implementors§