#[non_exhaustive]#[repr(u32)]pub enum hwtstamp_flags {
HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1
Implementations§
Source§impl hwtstamp_flags
impl hwtstamp_flags
pub const HWTSTAMP_FLAG_LAST: hwtstamp_flags = hwtstamp_flags::HWTSTAMP_FLAG_BONDED_PHC_INDEX
Source§impl hwtstamp_flags
impl hwtstamp_flags
pub const HWTSTAMP_FLAG_MASK: hwtstamp_flags = hwtstamp_flags::HWTSTAMP_FLAG_BONDED_PHC_INDEX
Trait Implementations§
Source§impl Clone for hwtstamp_flags
impl Clone for hwtstamp_flags
Source§fn clone(&self) -> hwtstamp_flags
fn clone(&self) -> hwtstamp_flags
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 hwtstamp_flags
impl Debug for hwtstamp_flags
Source§impl Hash for hwtstamp_flags
impl Hash for hwtstamp_flags
Source§impl PartialEq for hwtstamp_flags
impl PartialEq for hwtstamp_flags
impl Copy for hwtstamp_flags
impl Eq for hwtstamp_flags
impl StructuralPartialEq for hwtstamp_flags
Auto Trait Implementations§
impl Freeze for hwtstamp_flags
impl RefUnwindSafe for hwtstamp_flags
impl Send for hwtstamp_flags
impl Sync for hwtstamp_flags
impl Unpin for hwtstamp_flags
impl UnwindSafe for hwtstamp_flags
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