#[non_exhaustive]#[repr(u32)]pub enum txtime_flags {
SOF_TXTIME_DEADLINE_MODE = 1,
SOF_TXTIME_REPORT_ERRORS = 2,
SOF_TXTIME_FLAGS_MASK = 3,
}
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.
Implementations§
Source§impl txtime_flags
impl txtime_flags
pub const SOF_TXTIME_FLAGS_LAST: txtime_flags = txtime_flags::SOF_TXTIME_REPORT_ERRORS
Trait Implementations§
Source§impl Clone for txtime_flags
impl Clone for txtime_flags
Source§fn clone(&self) -> txtime_flags
fn clone(&self) -> txtime_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 txtime_flags
impl Debug for txtime_flags
Source§impl Hash for txtime_flags
impl Hash for txtime_flags
Source§impl PartialEq for txtime_flags
impl PartialEq for txtime_flags
impl Copy for txtime_flags
impl Eq for txtime_flags
impl StructuralPartialEq for txtime_flags
Auto Trait Implementations§
impl Freeze for txtime_flags
impl RefUnwindSafe for txtime_flags
impl Send for txtime_flags
impl Sync for txtime_flags
impl Unpin for txtime_flags
impl UnwindSafe for txtime_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