#[repr(i32)]pub enum DPI_AWARENESS {
DPI_AWARENESS_INVALID = -1,
DPI_AWARENESS_UNAWARE = 0,
DPI_AWARENESS_SYSTEM_AWARE = 1,
DPI_AWARENESS_PER_MONITOR_AWARE = 2,
}Variants§
DPI_AWARENESS_INVALID = -1
DPI_AWARENESS_UNAWARE = 0
DPI_AWARENESS_SYSTEM_AWARE = 1
DPI_AWARENESS_PER_MONITOR_AWARE = 2
Trait Implementations§
Source§impl Clone for DPI_AWARENESS
impl Clone for DPI_AWARENESS
Source§fn clone(&self) -> DPI_AWARENESS
fn clone(&self) -> DPI_AWARENESS
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DPI_AWARENESS
impl Debug for DPI_AWARENESS
Source§impl Hash for DPI_AWARENESS
impl Hash for DPI_AWARENESS
Source§impl PartialEq for DPI_AWARENESS
impl PartialEq for DPI_AWARENESS
impl Copy for DPI_AWARENESS
impl Eq for DPI_AWARENESS
impl StructuralPartialEq for DPI_AWARENESS
Auto Trait Implementations§
impl Freeze for DPI_AWARENESS
impl RefUnwindSafe for DPI_AWARENESS
impl Send for DPI_AWARENESS
impl Sync for DPI_AWARENESS
impl Unpin for DPI_AWARENESS
impl UnwindSafe for DPI_AWARENESS
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