Trait IRTCMessagingEvent_Impl
pub trait IRTCMessagingEvent_Impl: IDispatch_Impl {
// Required methods
fn Session(&self) -> Result<IRTCSession>;
fn Participant(&self) -> Result<IRTCParticipant>;
fn EventType(&self) -> Result<RTC_MESSAGING_EVENT_TYPE>;
fn Message(&self) -> Result<BSTR>;
fn MessageHeader(&self) -> Result<BSTR>;
fn UserStatus(&self) -> Result<RTC_MESSAGING_USER_STATUS>;
}
Required Methods§
fn Session(&self) -> Result<IRTCSession>
fn Participant(&self) -> Result<IRTCParticipant>
fn EventType(&self) -> Result<RTC_MESSAGING_EVENT_TYPE>
fn Message(&self) -> Result<BSTR>
fn MessageHeader(&self) -> Result<BSTR>
fn UserStatus(&self) -> Result<RTC_MESSAGING_USER_STATUS>
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.