pub trait INetFwAuthorizedApplications_Impl: Sized + IDispatch_Impl {
// Required methods
fn Count(&self) -> Result<i32>;
fn Add(&self, app: Option<&INetFwAuthorizedApplication>) -> Result<()>;
fn Remove(&self, imagefilename: &BSTR) -> Result<()>;
fn Item(&self, imagefilename: &BSTR) -> Result<INetFwAuthorizedApplication>;
fn _NewEnum(&self) -> Result<IUnknown>;
}
Required Methods§
fn Count(&self) -> Result<i32>
fn Add(&self, app: Option<&INetFwAuthorizedApplication>) -> Result<()>
fn Remove(&self, imagefilename: &BSTR) -> Result<()>
fn Item(&self, imagefilename: &BSTR) -> Result<INetFwAuthorizedApplication>
fn _NewEnum(&self) -> Result<IUnknown>
Object Safety§
This trait is not object safe.