[][src]Struct ti154::frame::MTFrame

pub struct MTFrame {
    pub header: MTHeader,
    pub extended_header: Option<MTExtendedHeader>,
    pub payload: Vec<u8>,
}

Fields

header: MTHeaderextended_header: Option<MTExtendedHeader>payload: Vec<u8>

Methods

impl MTFrame[src]

pub fn try_decode(cursor: &mut Cursor<&[u8]>) -> Result<Self, Error>[src]

pub fn encode_into(&self, buffer: &mut Vec<u8>)[src]

pub fn encode_to_uart_transport_frame(&self) -> Vec<u8>[src]

pub fn compute_frame_check_sequence(mt_frame_bytes: &[u8]) -> u8[src]

Trait Implementations

impl Clone for MTFrame[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for MTFrame[src]

Auto Trait Implementations

impl Unpin for MTFrame

impl Sync for MTFrame

impl Send for MTFrame

impl UnwindSafe for MTFrame

impl RefUnwindSafe for MTFrame

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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> 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]