pub trait IWdsTransportSession_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Content(&self) -> Result<IWdsTransportContent>;
    fn Id(&self) -> Result<u32>;
    fn NetworkInterfaceName(&self) -> Result<BSTR>;
    fn NetworkInterfaceAddress(&self) -> Result<BSTR>;
    fn TransferRate(&self) -> Result<u32>;
    fn MasterClientId(&self) -> Result<u32>;
    fn RetrieveClients(&self) -> Result<IWdsTransportCollection>;
    fn Terminate(&self) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§