pub trait IWdsTransportContent_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Namespace(&self) -> Result<IWdsTransportNamespace>;
    fn Id(&self) -> Result<u32>;
    fn Name(&self) -> Result<BSTR>;
    fn RetrieveSessions(&self) -> Result<IWdsTransportCollection>;
    fn Terminate(&self) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§