pub trait INetCfgBindingPath_Impl: Sized {
    // Required methods
    fn IsSamePathAs(&self, ppath: Option<&INetCfgBindingPath>) -> Result<()>;
    fn IsSubPathOf(&self, ppath: Option<&INetCfgBindingPath>) -> Result<()>;
    fn IsEnabled(&self) -> Result<()>;
    fn Enable(&self, fenable: BOOL) -> Result<()>;
    fn GetPathToken(&self, ppszwpathtoken: *mut PWSTR) -> Result<()>;
    fn GetOwner(&self, ppcomponent: *mut Option<INetCfgComponent>) -> Result<()>;
    fn GetDepth(&self) -> Result<u32>;
    fn EnumBindingInterfaces(
        &self,
        ppenuminterface: *mut Option<IEnumNetCfgBindingInterface>
    ) -> Result<()>;
}

Required Methods§

fn IsSamePathAs(&self, ppath: Option<&INetCfgBindingPath>) -> Result<()>

fn IsSubPathOf(&self, ppath: Option<&INetCfgBindingPath>) -> Result<()>

fn IsEnabled(&self) -> Result<()>

fn Enable(&self, fenable: BOOL) -> Result<()>

fn GetPathToken(&self, ppszwpathtoken: *mut PWSTR) -> Result<()>

fn GetOwner(&self, ppcomponent: *mut Option<INetCfgComponent>) -> Result<()>

fn GetDepth(&self) -> Result<u32>

fn EnumBindingInterfaces( &self, ppenuminterface: *mut Option<IEnumNetCfgBindingInterface> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§