pub trait INetworkSettings_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Name(&self, pname: *mut BSTR) -> Result<()>;
    fn SetName(&self, name: &BSTR) -> Result<()>;
    fn Id(&self, pid: *mut BSTR) -> Result<()>;
    fn SetId(&self, id: &BSTR) -> Result<()>;
}

Required Methods§

fn Name(&self, pname: *mut BSTR) -> Result<()>

fn SetName(&self, name: &BSTR) -> Result<()>

fn Id(&self, pid: *mut BSTR) -> Result<()>

fn SetId(&self, id: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§