pub trait IRTCSessionOperationCompleteEvent_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Session(&self) -> Result<IRTCSession>;
    fn Cookie(&self) -> Result<isize>;
    fn StatusCode(&self) -> Result<i32>;
    fn StatusText(&self) -> Result<BSTR>;
}

Required Methods§

fn Session(&self) -> Result<IRTCSession>

fn Cookie(&self) -> Result<isize>

fn StatusCode(&self) -> Result<i32>

fn StatusText(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§