windows::Win32::System::RealTimeCommunications

Trait IRTCClientPortManagement_Impl

pub trait IRTCClientPortManagement_Impl: IUnknownImpl {
    // Required methods
    fn StartListenAddressAndPort(
        &self,
        bstrinternallocaladdress: &BSTR,
        linternallocalport: i32,
    ) -> Result<()>;
    fn StopListenAddressAndPort(
        &self,
        bstrinternallocaladdress: &BSTR,
        linternallocalport: i32,
    ) -> Result<()>;
    fn GetPortRange(
        &self,
        enporttype: RTC_PORT_TYPE,
        plminvalue: *mut i32,
        plmaxvalue: *mut i32,
    ) -> Result<()>;
}

Required Methods§

fn StartListenAddressAndPort( &self, bstrinternallocaladdress: &BSTR, linternallocalport: i32, ) -> Result<()>

fn StopListenAddressAndPort( &self, bstrinternallocaladdress: &BSTR, linternallocalport: i32, ) -> Result<()>

fn GetPortRange( &self, enporttype: RTC_PORT_TYPE, plminvalue: *mut i32, plmaxvalue: *mut i32, ) -> 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.

Implementors§