Trait IRTCPresenceDevice_Impl
pub trait IRTCPresenceDevice_Impl: IUnknownImpl {
// Required methods
fn Status(&self) -> Result<RTC_PRESENCE_STATUS>;
fn Notes(&self) -> Result<BSTR>;
fn get_PresenceProperty(
&self,
enproperty: RTC_PRESENCE_PROPERTY,
) -> Result<BSTR>;
fn GetPresenceData(
&self,
pbstrnamespace: *mut BSTR,
pbstrdata: *mut BSTR,
) -> Result<()>;
}
Required Methods§
fn Status(&self) -> Result<RTC_PRESENCE_STATUS>
fn Notes(&self) -> Result<BSTR>
fn get_PresenceProperty( &self, enproperty: RTC_PRESENCE_PROPERTY, ) -> Result<BSTR>
fn GetPresenceData( &self, pbstrnamespace: *mut BSTR, pbstrdata: *mut BSTR, ) -> 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.