Trait INetCfgBindingPath_Impl
pub trait INetCfgBindingPath_Impl: IUnknownImpl {
// Required methods
fn IsSamePathAs(&self, ppath: Ref<'_, INetCfgBindingPath>) -> Result<()>;
fn IsSubPathOf(&self, ppath: Ref<'_, INetCfgBindingPath>) -> Result<()>;
fn IsEnabled(&self) -> Result<()>;
fn Enable(&self, fenable: BOOL) -> Result<()>;
fn GetPathToken(&self, ppszwpathtoken: *mut PWSTR) -> Result<()>;
fn GetOwner(&self, ppcomponent: OutRef<'_, INetCfgComponent>) -> Result<()>;
fn GetDepth(&self) -> Result<u32>;
fn EnumBindingInterfaces(
&self,
ppenuminterface: OutRef<'_, IEnumNetCfgBindingInterface>,
) -> Result<()>;
}
Required Methods§
fn IsSamePathAs(&self, ppath: Ref<'_, INetCfgBindingPath>) -> Result<()>
fn IsSubPathOf(&self, ppath: Ref<'_, INetCfgBindingPath>) -> Result<()>
fn IsEnabled(&self) -> Result<()>
fn Enable(&self, fenable: BOOL) -> Result<()>
fn GetPathToken(&self, ppszwpathtoken: *mut PWSTR) -> Result<()>
fn GetOwner(&self, ppcomponent: OutRef<'_, INetCfgComponent>) -> Result<()>
fn GetDepth(&self) -> Result<u32>
fn EnumBindingInterfaces( &self, ppenuminterface: OutRef<'_, IEnumNetCfgBindingInterface>, ) -> 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.