[][src]Struct coap_handler::implementations::SimpleCBORWrapper

pub struct SimpleCBORWrapper<H: SimpleCBORHandler> { /* fields omitted */ }

Wrapper for resource handlers that are implemented in terms of GETting, POSTing or PUTting objects in CBOR format.

The wrapper handles all encoding and decoding, options processing (ignoring the critical Uri-Path option under the assumption that that has been already processed by an underlying request router), the corresponding errors and block-wise GETs.

More complex handlers (eg. implementing additional representations, or processing query aprameters into additional data available to the SimpleCBORHandler) can be built by forwarding to this (where any critical but already processed options would need to be masked from the message's option) or taking inspiration from it.

Implementations

impl<H: SimpleCBORHandler> SimpleCBORWrapper<H>[src]

pub fn new(handler: H) -> Self[src]

Trait Implementations

impl<H> Handler for SimpleCBORWrapper<H> where
    H: SimpleCBORHandler,
    H::Get: Serialize,
    H::Post: for<'de> Deserialize<'de>,
    H::Put: for<'de> Deserialize<'de>, 
[src]

type RequestData = SimpleCBORRequestData

Auto Trait Implementations

impl<H> Send for SimpleCBORWrapper<H> where
    H: Send

impl<H> Sync for SimpleCBORWrapper<H> where
    H: Sync

impl<H> Unpin for SimpleCBORWrapper<H> where
    H: Unpin

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<'a, OldRD, OldH> HandlerBuilder<'a, OldRD> for OldH where
    OldH: Handler<RequestData = OldRD>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.