[][src]Struct lin_bus::frame::Frame

pub struct Frame { /* fields omitted */ }

Methods

impl Frame[src]

pub fn from_data(pid: PID, data: &[u8]) -> Frame[src]

Creates a LIN frame from the PID and data. Calculates and adds checksum accordingly

pub fn get_data(&self) -> &[u8][src]

Access the data from the frame

pub fn decode<T>(&self, offset: usize, length: usize) -> T where
    T: PrimInt + Unsigned,
    u64: BitRange<T>, 
[src]

Decode frame data

pub fn get_checksum(&self) -> u8[src]

Get the checksum from the frame

pub fn get_pid(&self) -> PID[src]

Get the PID from the frame

pub fn get_data_with_checksum(&self) -> &[u8][src]

Get the serialized bytes to write to the driver

Trait Implementations

impl Debug for Frame[src]

impl PartialEq<Frame> for Frame[src]

impl Eq for Frame[src]

Auto Trait Implementations

impl Unpin for Frame

impl Sync for Frame

impl Send for Frame

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]