pub trait IUPnPNAT_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn StaticPortMappingCollection(
        &self
    ) -> Result<IStaticPortMappingCollection>;
    fn DynamicPortMappingCollection(
        &self
    ) -> Result<IDynamicPortMappingCollection>;
    fn NATEventManager(&self) -> Result<INATEventManager>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§