[][src]Struct lorawan_encoding::maccommandcreator::NewChannelAnsCreator

pub struct NewChannelAnsCreator { /* fields omitted */ }

NewChannelAnsCreator serves for creating NewChannelAns MacCommand.

Examples

let mut creator = lorawan_encoding::maccommandcreator::NewChannelAnsCreator::new();
let res = creator
    .set_channel_frequency_ack(true)
    .set_data_rate_range_ack(true)
    .build();

Implementations

impl NewChannelAnsCreator[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 NewChannelAnsCreator[src]

pub fn set_channel_frequency_ack(&mut self, ack: bool) -> &mut Self[src]

Sets the channel frequency acknowledgement of the NewChannelAns to the provided value.

Argument

  • ack - true meaning that the channel frequency was acceptable or false otherwise.

pub fn set_data_rate_range_ack(&mut self, ack: bool) -> &mut Self[src]

Sets the data rate range acknowledgement of the NewChannelAns to the provided value.

Argument

  • ack - true meaning that the data rate range was acceptable or false otherwise.

Trait Implementations

impl Default for NewChannelAnsCreator[src]

impl SerializableMacCommand for NewChannelAnsCreator[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.