Trait IRangeException_Impl
pub trait IRangeException_Impl: IUnknownImpl {
// Required methods
fn GetClosedRangeStart(
&self,
pbclosedrangestart: *mut u8,
pcbidsize: *mut u32,
) -> Result<()>;
fn GetClosedRangeEnd(
&self,
pbclosedrangeend: *mut u8,
pcbidsize: *mut u32,
) -> Result<()>;
fn GetClockVector(
&self,
riid: *const GUID,
ppunk: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn GetClosedRangeStart( &self, pbclosedrangestart: *mut u8, pcbidsize: *mut u32, ) -> Result<()>
fn GetClosedRangeEnd( &self, pbclosedrangeend: *mut u8, pcbidsize: *mut u32, ) -> Result<()>
fn GetClockVector( &self, riid: *const GUID, ppunk: *mut *mut c_void, ) -> 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.