Trait INetConnection_Impl
pub trait INetConnection_Impl: IUnknownImpl {
// 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.