pub enum ReportType {
Input = 1,
Output = 2,
Feature = 3,
Reserved = 4,
}
Variants§
Trait Implementations§
Source§impl Clone for ReportType
impl Clone for ReportType
Source§fn clone(&self) -> ReportType
fn clone(&self) -> ReportType
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 ReportType
impl Debug for ReportType
Source§impl From<u8> for ReportType
impl From<u8> for ReportType
Source§fn from(rt: u8) -> ReportType
fn from(rt: u8) -> ReportType
Converts to this type from the input type.
Source§impl PartialEq for ReportType
impl PartialEq for ReportType
impl Copy for ReportType
impl Eq for ReportType
impl StructuralPartialEq for ReportType
Auto Trait Implementations§
impl Freeze for ReportType
impl RefUnwindSafe for ReportType
impl Send for ReportType
impl Sync for ReportType
impl Unpin for ReportType
impl UnwindSafe for ReportType
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