pub trait ITfDisplayAttributeInfo_Impl: Sized {
    // Required methods
    fn GetGUID(&self) -> Result<GUID>;
    fn GetDescription(&self) -> Result<BSTR>;
    fn GetAttributeInfo(&self, pda: *mut TF_DISPLAYATTRIBUTE) -> Result<()>;
    fn SetAttributeInfo(&self, pda: *const TF_DISPLAYATTRIBUTE) -> Result<()>;
    fn Reset(&self) -> Result<()>;
}

Required Methods§

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

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

fn GetAttributeInfo(&self, pda: *mut TF_DISPLAYATTRIBUTE) -> Result<()>

fn SetAttributeInfo(&self, pda: *const TF_DISPLAYATTRIBUTE) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§