pub enum PduAssignment {
Sae(u32),
Manufacturer(u32),
Unknown(u32),
}Expand description
Represents the assignment type of a Protocol Data Unit (PDU).
Variants§
Sae(u32)
Society of Automotive Engineers (SAE) assigned PDU.
Contains the PDU value.
Manufacturer(u32)
Manufacturer/proprietary assigned PDU.
Contains the PDU value.
Unknown(u32)
Unknown or unrecognized PDU assignment. Contains the PDU value.
Trait Implementations§
Source§impl Clone for PduAssignment
impl Clone for PduAssignment
Source§fn clone(&self) -> PduAssignment
fn clone(&self) -> PduAssignment
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 PduAssignment
impl Debug for PduAssignment
Source§impl PartialEq for PduAssignment
impl PartialEq for PduAssignment
impl Copy for PduAssignment
impl Eq for PduAssignment
impl StructuralPartialEq for PduAssignment
Auto Trait Implementations§
impl Freeze for PduAssignment
impl RefUnwindSafe for PduAssignment
impl Send for PduAssignment
impl Sync for PduAssignment
impl Unpin for PduAssignment
impl UnwindSafe for PduAssignment
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