[][src]Struct lorawan::maccommandcreator::DevStatusReqCreator

pub struct DevStatusReqCreator {}

DevStatusReqCreator serves for creating DevStatusReq MacCommand.

Examples

let creator = lorawan::maccommandcreator::DevStatusReqCreator::new();
let res = creator.build();

Implementations

impl DevStatusReqCreator[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.

Trait Implementations

impl Default for DevStatusReqCreator[src]

impl SerializableMacCommand for DevStatusReqCreator[src]

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

Bytes of the SerializableMacCommand without the cid.

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

The cid of the SerializableMacCommand.

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.