[][src]Struct lorawan::parser::FCtrl

pub struct FCtrl(_, _);

FCtrl represents the FCtrl from FHDR.

Implementations

impl FCtrl[src]

pub fn new(bytes: u8, uplink: bool) -> FCtrl[src]

pub fn adr(&self) -> bool[src]

Gives whether ADR is enabled or not.

pub fn adr_ack_req(&self) -> bool[src]

Gives whether ADR ACK is requested.

pub fn ack(&self) -> bool[src]

Gives whether ack bit is set.

pub fn f_pending(&self) -> bool[src]

Gives whether there are more payloads pending.

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

Gives the size of FOpts.

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

Gives the binary representation of the FCtrl.

Trait Implementations

impl Debug for FCtrl[src]

impl PartialEq<FCtrl> for FCtrl[src]

impl StructuralPartialEq for FCtrl[src]

Auto Trait Implementations

impl RefUnwindSafe for FCtrl

impl Send for FCtrl

impl Sync for FCtrl

impl Unpin for FCtrl

impl UnwindSafe for FCtrl

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.