pub struct AD(/* private fields */);
Available on crate features
kernel
and gdi
only.Expand description
HDC::SetArcDirection
dir
(i32
).
Implementations§
Source§impl AD
impl AD
Sourcepub const unsafe fn as_mut(&mut self) -> &mut i32
pub const unsafe fn as_mut(&mut self) -> &mut i32
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: i32) -> Self
pub const unsafe fn from_raw(v: i32) -> 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) -> i32
pub const fn raw(&self) -> i32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Trait Implementations§
Source§impl Ord for AD
impl Ord for AD
Source§impl PartialOrd for AD
impl PartialOrd for AD
impl Copy for AD
impl Eq for AD
impl StructuralPartialEq for AD
Auto Trait Implementations§
impl Freeze for AD
impl RefUnwindSafe for AD
impl Send for AD
impl Sync for AD
impl Unpin for AD
impl UnwindSafe for AD
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