Trait IContactField_Impl
pub trait IContactField_Impl: IUnknownImpl {
// 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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.