pub struct Block2RequestData(/* private fields */);
Expand description

Request data from a Block2 request

As the M flag is unused in requests, it is not captured in here (and ignored at construction).

Implementations§

source§

impl Block2RequestData

source

pub fn from_message( message: &impl ReadableMessage ) -> Result<Self, BadBlock2Option>

Extract a request block 2 value from a request message.

Absence of the option is not an error and results in the default value to be returned; exceeding length or duplicate entries are an error and are indicated by returning an error, which should be responded to with a Bad Option error.

source

pub fn from_option(option: &impl MessageOption) -> Result<Self, BadBlock2Option>

Extract a request block 2 value from a single option. An error is indicated on a malformed (ie. overly long) option.

Compared to Block2RequestData::from_message(), this can easily be packed into a single loop that processes all options and fails on unknown critical ones; on the other hand, this does not automate the check for duplicate options.

§Panics

In debug mode if the option is not Block2

source

pub fn to_option_value(&self, more: bool) -> u32

source

pub fn size(&self) -> u16

Size of a single block

source

pub fn start(&self) -> usize

Number of bytes before the indicated block

source

pub fn shrink(self, size: u16) -> Option<Self>

Return a block that has identical .start(), but a block size smaller or equal to the given one.

Returns None if the given size is not expressible as a CoAP block (ie. is less than 16).

Trait Implementations§

source§

impl Default for Block2RequestData

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl TryFromOption for Block2RequestData

source§

fn try_from(value: &impl MessageOption) -> Option<Self>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.