#[repr(u32)]pub enum ReportingMode {
Continuous = 0,
OnChange = 1,
OneShot = 2,
SpecialTrigger = 3,
}
Variants§
Continuous = 0
AREPORTING_MODE_CONTINUOUS
continuous reporting
OnChange = 1
AREPORTING_MODE_ON_CHANGE
reporting on change
OneShot = 2
AREPORTING_MODE_ONE_SHOT
one shot reporting
SpecialTrigger = 3
AREPORTING_MODE_SPECIAL_TRIGGER
special trigger reporting
Trait Implementations§
Source§impl Clone for ReportingMode
impl Clone for ReportingMode
Source§fn clone(&self) -> ReportingMode
fn clone(&self) -> ReportingMode
Returns a copy 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 ReportingMode
impl Debug for ReportingMode
impl Copy for ReportingMode
Auto Trait Implementations§
impl Freeze for ReportingMode
impl RefUnwindSafe for ReportingMode
impl Send for ReportingMode
impl Sync for ReportingMode
impl Unpin for ReportingMode
impl UnwindSafe for ReportingMode
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