pub trait IContactField_Impl: Sized {
    // Required methods
    fn Type(&self) -> Result<ContactFieldType>;
    fn Category(&self) -> Result<ContactFieldCategory>;
    fn Name(&self) -> Result<HSTRING>;
    fn Value(&self) -> Result<HSTRING>;
}

Required Methods§

fn Type(&self) -> Result<ContactFieldType>

fn Category(&self) -> Result<ContactFieldCategory>

fn Name(&self) -> Result<HSTRING>

fn Value(&self) -> Result<HSTRING>

Object Safety§

This trait is not object safe.

Implementors§