pub trait INetFwPolicy_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn CurrentProfile(&self) -> Result<INetFwProfile>;
    fn GetProfileByType(
        &self,
        profiletype: NET_FW_PROFILE_TYPE
    ) -> Result<INetFwProfile>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§