pub trait INetworkConnection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn GetNetwork(&self) -> Result<INetwork>;
    fn IsConnectedToInternet(&self) -> Result<VARIANT_BOOL>;
    fn IsConnected(&self) -> Result<VARIANT_BOOL>;
    fn GetConnectivity(&self) -> Result<NLM_CONNECTIVITY>;
    fn GetConnectionId(&self) -> Result<GUID>;
    fn GetAdapterId(&self) -> Result<GUID>;
    fn GetDomainType(&self) -> Result<NLM_DOMAIN_TYPE>;
}

Required Methods§

fn GetNetwork(&self) -> Result<INetwork>

fn IsConnectedToInternet(&self) -> Result<VARIANT_BOOL>

fn IsConnected(&self) -> Result<VARIANT_BOOL>

fn GetConnectivity(&self) -> Result<NLM_CONNECTIVITY>

fn GetConnectionId(&self) -> Result<GUID>

fn GetAdapterId(&self) -> Result<GUID>

fn GetDomainType(&self) -> Result<NLM_DOMAIN_TYPE>

Object Safety§

This trait is not object safe.

Implementors§