[][src]Struct lorawan::maccommands::LinkCheckAnsPayload

pub struct LinkCheckAnsPayload<'a>(_);

LinkCheckAnsPayload represents the LinkCheckAns LoRaWAN MACCommand.

Implementations

impl<'a> LinkCheckAnsPayload<'a>[src]

pub fn new<'b>(data: &'a [u8]) -> Result<LinkCheckAnsPayload<'a>, &'b str>[src]

Creates a new instance of the mac command if there is enought data.

pub fn new_as_mac_cmd<'b>(
    data: &'a [u8]
) -> Result<(MacCommand<'a>, usize), &'b str>
[src]

pub const fn cid() -> u8[src]

Command identifier.

Sent by end device or sent by network server.

pub const fn len() -> usize[src]

length of the payload of the mac command.

impl<'a> LinkCheckAnsPayload<'a>[src]

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

The link margin in dB of the last successfully received LinkCheckReq command.

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

The number of gateways that successfully received the last LinkCheckReq command.

Trait Implementations

impl<'a> Debug for LinkCheckAnsPayload<'a>[src]

impl<'a> From<&'a [u8; 2]> for LinkCheckAnsPayload<'a>[src]

impl<'a> PartialEq<LinkCheckAnsPayload<'a>> for LinkCheckAnsPayload<'a>[src]

impl<'a> StructuralPartialEq for LinkCheckAnsPayload<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for LinkCheckAnsPayload<'a>

impl<'a> Send for LinkCheckAnsPayload<'a>

impl<'a> Sync for LinkCheckAnsPayload<'a>

impl<'a> Unpin for LinkCheckAnsPayload<'a>

impl<'a> UnwindSafe for LinkCheckAnsPayload<'a>

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.