pub trait IWSDTransportAddress_Impl: Sized + IWSDAddress_Impl {
    // Required methods
    fn GetPort(&self) -> Result<u16>;
    fn SetPort(&self, wport: u16) -> Result<()>;
    fn GetTransportAddress(&self) -> Result<PCWSTR>;
    fn GetTransportAddressEx(&self, fsafe: BOOL) -> Result<PCWSTR>;
    fn SetTransportAddress(&self, pszaddress: &PCWSTR) -> Result<()>;
}

Required Methods§

fn GetPort(&self) -> Result<u16>

fn SetPort(&self, wport: u16) -> Result<()>

fn GetTransportAddress(&self) -> Result<PCWSTR>

fn GetTransportAddressEx(&self, fsafe: BOOL) -> Result<PCWSTR>

fn SetTransportAddress(&self, pszaddress: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§