pub trait ICOMLBArguments_Impl: Sized {
    // Required methods
    fn GetCLSID(&self, pclsid: *mut GUID) -> Result<()>;
    fn SetCLSID(&self, pclsid: *mut GUID) -> Result<()>;
    fn GetMachineName(&self, cchsvr: u32, szservername: PWSTR) -> Result<()>;
    fn SetMachineName(&self, cchsvr: u32, szservername: &PCWSTR) -> Result<()>;
}

Required Methods§

fn GetCLSID(&self, pclsid: *mut GUID) -> Result<()>

fn SetCLSID(&self, pclsid: *mut GUID) -> Result<()>

fn GetMachineName(&self, cchsvr: u32, szservername: PWSTR) -> Result<()>

fn SetMachineName(&self, cchsvr: u32, szservername: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§