pub struct DMDITHER(/* private fields */);
Available on crate features
kernel
and user
only.Expand description
DEVMODE
dmDitherType
(u32
).
Implementations§
Source§impl DMDITHER
impl DMDITHER
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl DMDITHER
impl DMDITHER
Sourcepub const ERRORDIFFUSION: Self
pub const ERRORDIFFUSION: Self
LineArt dithering.
Trait Implementations§
Source§impl Ord for DMDITHER
impl Ord for DMDITHER
Source§impl PartialOrd for DMDITHER
impl PartialOrd for DMDITHER
impl Copy for DMDITHER
impl Eq for DMDITHER
impl StructuralPartialEq for DMDITHER
Auto Trait Implementations§
impl Freeze for DMDITHER
impl RefUnwindSafe for DMDITHER
impl Send for DMDITHER
impl Sync for DMDITHER
impl Unpin for DMDITHER
impl UnwindSafe for DMDITHER
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more