[][src]Struct lorawan_encoding::maccommandcreator::RXTimingSetupReqCreator

pub struct RXTimingSetupReqCreator { /* fields omitted */ }

RXTimingSetupReqCreator serves for creating RXTimingSetupReq MacCommand.

Examples

let mut creator = lorawan_encoding::maccommandcreator::RXTimingSetupReqCreator::new();
let res = creator.set_delay(0x0f).unwrap().build();

Implementations

impl RXTimingSetupReqCreator[src]

pub fn new() -> Self[src]

Creates a new instance of the class.

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

Returns the serialized version of the class as bytes.

impl RXTimingSetupReqCreator[src]

pub fn set_delay(&mut self, delay: u8) -> Result<&mut Self, &str>[src]

Sets the delay of the RXTimingSetupReq to the provided value.

Argument

  • delay - the value to be used as delay.

Trait Implementations

impl Default for RXTimingSetupReqCreator[src]

impl SerializableMacCommand for RXTimingSetupReqCreator[src]

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

Bytes of the SerializableMacCommand without the cid.

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

The cid of the SerializableMacCommand.

pub fn payload_len(&self) -> usize[src]

Length of the SerializableMacCommand without the cid.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.