Trait INetFwAuthorizedApplication_Impl
pub trait INetFwAuthorizedApplication_Impl: IDispatch_Impl {
// Required methods
fn Name(&self) -> Result<BSTR>;
fn SetName(&self, name: &BSTR) -> Result<()>;
fn ProcessImageFileName(&self) -> Result<BSTR>;
fn SetProcessImageFileName(&self, imagefilename: &BSTR) -> Result<()>;
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 Name(&self) -> Result<BSTR>
fn SetName(&self, name: &BSTR) -> Result<()>
fn ProcessImageFileName(&self) -> Result<BSTR>
fn SetProcessImageFileName(&self, imagefilename: &BSTR) -> Result<()>
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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.