#[repr(u8)]pub enum SincOverflowFlag {
SINC_OVERFLOW_FLAG_0 = 0,
SINC_OVERFLOW_FLAG_1 = 1,
}Variants§
SINC_OVERFLOW_FLAG_0 = 0
The counter result has no overflow occurrence in the last scan process
SINC_OVERFLOW_FLAG_1 = 1
The counter result has an overflow occurrence in the last scan process
Implementations§
Trait Implementations§
Source§impl Clone for SincOverflowFlag
impl Clone for SincOverflowFlag
Source§fn clone(&self) -> SincOverflowFlag
fn clone(&self) -> SincOverflowFlag
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 SincOverflowFlag
impl Debug for SincOverflowFlag
Source§impl From<SincOverflowFlag> for u8
impl From<SincOverflowFlag> for u8
Source§fn from(val: SincOverflowFlag) -> u8
fn from(val: SincOverflowFlag) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SincOverflowFlag
impl From<u8> for SincOverflowFlag
Source§fn from(val: u8) -> SincOverflowFlag
fn from(val: u8) -> SincOverflowFlag
Converts to this type from the input type.
Source§impl Ord for SincOverflowFlag
impl Ord for SincOverflowFlag
Source§fn cmp(&self, other: &SincOverflowFlag) -> Ordering
fn cmp(&self, other: &SincOverflowFlag) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SincOverflowFlag
impl PartialEq for SincOverflowFlag
Source§impl PartialOrd for SincOverflowFlag
impl PartialOrd for SincOverflowFlag
impl Copy for SincOverflowFlag
impl Eq for SincOverflowFlag
impl StructuralPartialEq for SincOverflowFlag
Auto Trait Implementations§
impl Freeze for SincOverflowFlag
impl RefUnwindSafe for SincOverflowFlag
impl Send for SincOverflowFlag
impl Sync for SincOverflowFlag
impl Unpin for SincOverflowFlag
impl UnwindSafe for SincOverflowFlag
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