pub trait INetConnection_Impl: Sized {
    // Required methods
    fn Connect(&self) -> Result<()>;
    fn Disconnect(&self) -> Result<()>;
    fn Delete(&self) -> Result<()>;
    fn Duplicate(&self, pszwduplicatename: &PCWSTR) -> Result<INetConnection>;
    fn GetProperties(&self) -> Result<*mut NETCON_PROPERTIES>;
    fn GetUiObjectClassId(&self) -> Result<GUID>;
    fn Rename(&self, pszwnewname: &PCWSTR) -> Result<()>;
}

Required Methods§

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

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

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

fn Duplicate(&self, pszwduplicatename: &PCWSTR) -> Result<INetConnection>

fn GetProperties(&self) -> Result<*mut NETCON_PROPERTIES>

fn GetUiObjectClassId(&self) -> Result<GUID>

fn Rename(&self, pszwnewname: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§