#[repr(u8)]pub enum Framedelaymode {
FREE_RUN = 0,
WINDOW = 1,
EXACT_VAL = 2,
WINDOW_GRID = 3,
}
Variants§
FREE_RUN = 0
Transmission is independent of frame timer and will start when the STARTTX task is triggered. No timeout.
WINDOW = 1
Frame is transmitted between FRAMEDELAYMIN and FRAMEDELAYMAX
EXACT_VAL = 2
Frame is transmitted exactly at FRAMEDELAYMAX
WINDOW_GRID = 3
Frame is transmitted on a bit grid between FRAMEDELAYMIN and FRAMEDELAYMAX
Implementations§
Trait Implementations§
Source§impl Clone for Framedelaymode
impl Clone for Framedelaymode
Source§fn clone(&self) -> Framedelaymode
fn clone(&self) -> Framedelaymode
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 From<Framedelaymode> for u8
impl From<Framedelaymode> for u8
Source§fn from(val: Framedelaymode) -> u8
fn from(val: Framedelaymode) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Framedelaymode
impl From<u8> for Framedelaymode
Source§fn from(val: u8) -> Framedelaymode
fn from(val: u8) -> Framedelaymode
Converts to this type from the input type.
Source§impl Ord for Framedelaymode
impl Ord for Framedelaymode
Source§fn cmp(&self, other: &Framedelaymode) -> Ordering
fn cmp(&self, other: &Framedelaymode) -> 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 Framedelaymode
impl PartialEq for Framedelaymode
Source§impl PartialOrd for Framedelaymode
impl PartialOrd for Framedelaymode
impl Copy for Framedelaymode
impl Eq for Framedelaymode
impl StructuralPartialEq for Framedelaymode
Auto Trait Implementations§
impl Freeze for Framedelaymode
impl RefUnwindSafe for Framedelaymode
impl Send for Framedelaymode
impl Sync for Framedelaymode
impl Unpin for Framedelaymode
impl UnwindSafe for Framedelaymode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)