[−][src]Struct lorawan_encoding::maccommands::DutyCycleReqPayload
DutyCycleReqPayload represents the DutyCycleReq LoRaWAN MACCommand.
Implementations
impl<'a> DutyCycleReqPayload<'a>[src]
pub fn new<'b>(data: &'a [u8]) -> Result<DutyCycleReqPayload<'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]
data: &'a [u8]
) -> Result<(MacCommand<'a>, usize), &'b str>
pub const fn cid() -> u8[src]
Command identifier.
pub const fn uplink() -> bool[src]
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> DutyCycleReqPayload<'a>[src]
pub fn max_duty_cycle_raw(&self) -> u8[src]
Integer value of the max duty cycle field.
pub fn max_duty_cycle(&self) -> f32[src]
Value of the max duty cycle field as portion of time (ex: 0.5).
Trait Implementations
impl<'a> Debug for DutyCycleReqPayload<'a>[src]
impl<'a> PartialEq<DutyCycleReqPayload<'a>> for DutyCycleReqPayload<'a>[src]
pub fn eq(&self, other: &DutyCycleReqPayload<'a>) -> bool[src]
pub fn ne(&self, other: &DutyCycleReqPayload<'a>) -> bool[src]
impl<'a> StructuralPartialEq for DutyCycleReqPayload<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for DutyCycleReqPayload<'a>[src]
impl<'a> Send for DutyCycleReqPayload<'a>[src]
impl<'a> Sync for DutyCycleReqPayload<'a>[src]
impl<'a> Unpin for DutyCycleReqPayload<'a>[src]
impl<'a> UnwindSafe for DutyCycleReqPayload<'a>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,