pub trait INetFwRemoteAdminSettings_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn IpVersion(&self) -> Result<NET_FW_IP_VERSION>;
    fn SetIpVersion(&self, ipversion: NET_FW_IP_VERSION) -> Result<()>;
    fn Scope(&self) -> Result<NET_FW_SCOPE>;
    fn SetScope(&self, scope: NET_FW_SCOPE) -> Result<()>;
    fn RemoteAddresses(&self) -> Result<BSTR>;
    fn SetRemoteAddresses(&self, remoteaddrs: &BSTR) -> Result<()>;
    fn Enabled(&self) -> Result<VARIANT_BOOL>;
    fn SetEnabled(&self, enabled: VARIANT_BOOL) -> Result<()>;
}

Required Methods§

fn IpVersion(&self) -> Result<NET_FW_IP_VERSION>

fn SetIpVersion(&self, ipversion: NET_FW_IP_VERSION) -> Result<()>

fn Scope(&self) -> Result<NET_FW_SCOPE>

fn SetScope(&self, scope: NET_FW_SCOPE) -> Result<()>

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

fn SetRemoteAddresses(&self, remoteaddrs: &BSTR) -> Result<()>

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

fn SetEnabled(&self, enabled: VARIANT_BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§