pub trait INetCfgBindingInterface_Impl: Sized {
    // Required methods
    fn GetName(&self, ppszwinterfacename: *mut PWSTR) -> Result<()>;
    fn GetUpperComponent(
        &self,
        ppnccitem: *mut Option<INetCfgComponent>
    ) -> Result<()>;
    fn GetLowerComponent(
        &self,
        ppnccitem: *mut Option<INetCfgComponent>
    ) -> Result<()>;
}

Required Methods§

fn GetName(&self, ppszwinterfacename: *mut PWSTR) -> Result<()>

fn GetUpperComponent( &self, ppnccitem: *mut Option<INetCfgComponent> ) -> Result<()>

fn GetLowerComponent( &self, ppnccitem: *mut Option<INetCfgComponent> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§