Trait IBinding_Impl
pub trait IBinding_Impl: IUnknownImpl {
// Required methods
fn Abort(&self) -> Result<()>;
fn Suspend(&self) -> Result<()>;
fn Resume(&self) -> Result<()>;
fn SetPriority(&self, npriority: i32) -> Result<()>;
fn GetPriority(&self) -> Result<i32>;
fn GetBindResult(
&self,
pclsidprotocol: *mut GUID,
pdwresult: *mut u32,
pszresult: *mut PWSTR,
pdwreserved: *mut u32,
) -> Result<()>;
}
Required Methods§
fn Abort(&self) -> Result<()>
fn Suspend(&self) -> Result<()>
fn Resume(&self) -> Result<()>
fn SetPriority(&self, npriority: i32) -> Result<()>
fn GetPriority(&self) -> Result<i32>
fn GetBindResult( &self, pclsidprotocol: *mut GUID, pdwresult: *mut u32, pszresult: *mut PWSTR, pdwreserved: *mut u32, ) -> 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.