Trait IAppointmentParticipant_Impl
pub trait IAppointmentParticipant_Impl: IUnknownImpl {
// Required methods
fn DisplayName(&self) -> Result<HSTRING>;
fn SetDisplayName(&self, value: &HSTRING) -> Result<()>;
fn Address(&self) -> Result<HSTRING>;
fn SetAddress(&self, value: &HSTRING) -> Result<()>;
}
Required Methods§
fn DisplayName(&self) -> Result<HSTRING>
fn SetDisplayName(&self, value: &HSTRING) -> Result<()>
fn Address(&self) -> Result<HSTRING>
fn SetAddress(&self, value: &HSTRING) -> Result<()>
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.