pub struct DBT(/* private fields */);
Available on crate feature
kernel
only.Expand description
wm::DeviceChange
event (u16
).
Implementations§
Source§impl DBT
impl DBT
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u16
pub const unsafe fn as_mut(&mut self) -> &mut u16
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: u16) -> Self
pub const unsafe fn from_raw(v: u16) -> 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) -> u16
pub const fn raw(&self) -> u16
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 DBT
impl DBT
pub const DEVNODES_CHANGED: Self
pub const QUERYCHANGECONFIG: Self
pub const CONFIGCHANGED: Self
pub const CONFIGCHANGECANCELED: Self
pub const DEVICEARRIVAL: Self
pub const DEVICEQUERYREMOVE: Self
pub const DEVICEQUERYREMOVEFAILED: Self
pub const DEVICEREMOVEPENDING: Self
pub const DEVICEREMOVECOMPLETE: Self
pub const DEVICETYPESPECIFIC: Self
pub const CUSTOMEVENT: Self
pub const USERDEFINED: Self
Trait Implementations§
Source§impl Ord for DBT
impl Ord for DBT
Source§impl PartialOrd for DBT
impl PartialOrd for DBT
impl Copy for DBT
impl Eq for DBT
impl StructuralPartialEq for DBT
Auto Trait Implementations§
impl Freeze for DBT
impl RefUnwindSafe for DBT
impl Send for DBT
impl Sync for DBT
impl Unpin for DBT
impl UnwindSafe for DBT
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