Trait IDWritePixelSnapping_Impl
pub trait IDWritePixelSnapping_Impl: IUnknownImpl {
// Required methods
fn IsPixelSnappingDisabled(
&self,
clientdrawingcontext: *const c_void,
) -> Result<BOOL>;
fn GetCurrentTransform(
&self,
clientdrawingcontext: *const c_void,
transform: *mut DWRITE_MATRIX,
) -> Result<()>;
fn GetPixelsPerDip(
&self,
clientdrawingcontext: *const c_void,
) -> Result<f32>;
}
Required Methods§
fn IsPixelSnappingDisabled( &self, clientdrawingcontext: *const c_void, ) -> Result<BOOL>
fn GetCurrentTransform( &self, clientdrawingcontext: *const c_void, transform: *mut DWRITE_MATRIX, ) -> Result<()>
fn GetPixelsPerDip(&self, clientdrawingcontext: *const c_void) -> Result<f32>
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.