Trait IWMDMDeviceSession_Impl
pub trait IWMDMDeviceSession_Impl: IUnknownImpl {
// Required methods
fn BeginSession(
&self,
type: WMDM_SESSION_TYPE,
pctx: *const u8,
dwsizectx: u32,
) -> Result<()>;
fn EndSession(
&self,
type: WMDM_SESSION_TYPE,
pctx: *const u8,
dwsizectx: u32,
) -> Result<()>;
}
Required Methods§
fn BeginSession( &self, type: WMDM_SESSION_TYPE, pctx: *const u8, dwsizectx: u32, ) -> Result<()>
fn EndSession( &self, type: WMDM_SESSION_TYPE, pctx: *const u8, dwsizectx: 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.