Trait INetCfgLock_Impl
pub trait INetCfgLock_Impl: IUnknownImpl {
// Required methods
fn AcquireWriteLock(
&self,
cmstimeout: u32,
pszwclientdescription: &PCWSTR,
ppszwclientdescription: *mut PWSTR,
) -> Result<()>;
fn ReleaseWriteLock(&self) -> Result<()>;
fn IsWriteLocked(&self, ppszwclientdescription: *mut PWSTR) -> Result<()>;
}
Required Methods§
fn AcquireWriteLock( &self, cmstimeout: u32, pszwclientdescription: &PCWSTR, ppszwclientdescription: *mut PWSTR, ) -> Result<()>
fn ReleaseWriteLock(&self) -> Result<()>
fn IsWriteLocked(&self, ppszwclientdescription: *mut PWSTR) -> 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.