Struct EsbHeader

Source
pub struct EsbHeader { /* private fields */ }
Expand description

The non-payload portion of an ESB packet

This is typically used to create a Packet Grant using methods from the EsbApp or EsbIrq interfaces.

§Example

use esb::EsbHeader;

let builder_result = EsbHeader::build()
    .max_payload(252)
    .pid(0)
    .pipe(1)
    .no_ack(true)
    .check();

let new_result = EsbHeader::new(
    252,
    0,
    1,
    true,
);

assert_eq!(builder_result, new_result);

Implementations§

Source§

impl EsbHeader

Source

pub fn build() -> EsbHeaderBuilder

Create a new packet header using a builder pattern

See the docs for EsbBuilder for more information.

Source

pub fn new( max_payload_length: u8, pid: u8, pipe: u8, no_ack: bool, ) -> Result<Self, Error>

Create a new packet header

Notes on valid values:

  • max_payload_length must be between 0 and 252 bytes, inclusive.
  • pid must be between 0 and 3, inclusive.
  • pipe must be between 0 and 7, inclusive.
Source

pub fn pid(self) -> u8

Accessor for the Pipe ID of the packet

Source

pub fn no_ack(self) -> bool

Accessor for the no-ack field of the packet

Source

pub fn payload_len(self) -> u16

Accessor for the length (in bytes) of the payload

Source

pub fn rssi(self) -> u8

Accessor for the rssi of the payload

Trait Implementations§

Source§

impl Clone for EsbHeader

Source§

fn clone(&self) -> EsbHeader

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EsbHeader

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for EsbHeader

Source§

fn eq(&self, other: &EsbHeader) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for EsbHeader

Source§

impl Eq for EsbHeader

Source§

impl StructuralPartialEq for EsbHeader

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.