Enum Framedelaymode
#[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§
§impl Framedelaymode
impl Framedelaymode
pub const fn from_bits(val: u8) -> Framedelaymode
pub const fn to_bits(self) -> u8
Trait Implementations§
§impl Clone for Framedelaymode
impl Clone for Framedelaymode
§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 more§impl From<u8> for Framedelaymode
impl From<u8> for Framedelaymode
§fn from(val: u8) -> Framedelaymode
fn from(val: u8) -> Framedelaymode
Converts to this type from the input type.
§impl Ord for Framedelaymode
impl Ord for Framedelaymode
§impl PartialEq for Framedelaymode
impl PartialEq for Framedelaymode
§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
)