#[repr(u8)]pub enum Isocanfden {
NON_ISO = 0,
ISO = 1,
}Variants§
NON_ISO = 0
FlexCAN operates using the non-ISO CAN FD protocol.
ISO = 1
FlexCAN operates using the ISO CAN FD protocol (ISO 11898-1).
Implementations§
Source§impl Isocanfden
impl Isocanfden
Trait Implementations§
Source§impl Clone for Isocanfden
impl Clone for Isocanfden
Source§fn clone(&self) -> Isocanfden
fn clone(&self) -> Isocanfden
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 Isocanfden
impl Debug for Isocanfden
Source§impl From<Isocanfden> for u8
impl From<Isocanfden> for u8
Source§fn from(val: Isocanfden) -> u8
fn from(val: Isocanfden) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Isocanfden
impl From<u8> for Isocanfden
Source§fn from(val: u8) -> Isocanfden
fn from(val: u8) -> Isocanfden
Converts to this type from the input type.
Source§impl Ord for Isocanfden
impl Ord for Isocanfden
Source§fn cmp(&self, other: &Isocanfden) -> Ordering
fn cmp(&self, other: &Isocanfden) -> 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 Isocanfden
impl PartialEq for Isocanfden
Source§impl PartialOrd for Isocanfden
impl PartialOrd for Isocanfden
impl Copy for Isocanfden
impl Eq for Isocanfden
impl StructuralPartialEq for Isocanfden
Auto Trait Implementations§
impl Freeze for Isocanfden
impl RefUnwindSafe for Isocanfden
impl Send for Isocanfden
impl Sync for Isocanfden
impl Unpin for Isocanfden
impl UnwindSafe for Isocanfden
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