pub trait IRDPSRAPITcpConnectionInfo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Protocol(&self) -> Result<i32>;
    fn LocalPort(&self) -> Result<i32>;
    fn LocalIP(&self) -> Result<BSTR>;
    fn PeerPort(&self) -> Result<i32>;
    fn PeerIP(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§