[][src]Struct lorawan::maccommandcreator::LinkCheckAnsCreator

pub struct LinkCheckAnsCreator { /* fields omitted */ }

LinkCheckAnsCreator serves for creating LinkCheckAns MacCommand.

Examples

let mut creator = lorawan::maccommandcreator::LinkCheckAnsCreator::new();
let res = creator.set_margin(253).set_gateway_count(254).build();

Implementations

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

pub fn set_margin(&mut self, margin: u8) -> &mut Self[src]

Sets the margin of the LinkCheckAns to the provided value.

Argument

  • margin - margin in dB. The value is relative to the demodulation floor. The value 255 is reserved.

pub fn set_gateway_count(&mut self, gw_cnt: u8) -> &mut Self[src]

Sets the gateway count of the LinkCheckAns to the provided value.

Argument

  • gateway_count - the number of gateways that received the LinkCheckReq.

Trait Implementations

impl Default for LinkCheckAnsCreator[src]

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