Trait IRouterProtocolConfig_Impl
pub trait IRouterProtocolConfig_Impl: IUnknownImpl {
// Required methods
fn AddProtocol(
&self,
pszmachinename: &PCWSTR,
dwtransportid: u32,
dwprotocolid: u32,
hwnd: HWND,
dwflags: u32,
prouter: Ref<'_, IUnknown>,
ureserved1: usize,
) -> Result<()>;
fn RemoveProtocol(
&self,
pszmachinename: &PCWSTR,
dwtransportid: u32,
dwprotocolid: u32,
hwnd: HWND,
dwflags: u32,
prouter: Ref<'_, IUnknown>,
ureserved1: usize,
) -> Result<()>;
}
Required Methods§
fn AddProtocol( &self, pszmachinename: &PCWSTR, dwtransportid: u32, dwprotocolid: u32, hwnd: HWND, dwflags: u32, prouter: Ref<'_, IUnknown>, ureserved1: usize, ) -> Result<()>
fn RemoveProtocol( &self, pszmachinename: &PCWSTR, dwtransportid: u32, dwprotocolid: u32, hwnd: HWND, dwflags: u32, prouter: Ref<'_, IUnknown>, ureserved1: usize, ) -> 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.