pub trait INetFwServices_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn Item(&self, svctype: NET_FW_SERVICE_TYPE) -> Result<INetFwService>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn Count(&self) -> Result<i32>

fn Item(&self, svctype: NET_FW_SERVICE_TYPE) -> Result<INetFwService>

fn _NewEnum(&self) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§