coap-request-implementations 0.1.0-alpha.4

Implementations of basic CoAP requests
Documentation
1
2
3
4
use coap_request::{Request, Stack};

/// Sealed trait through which we indicate that all options we add are well-ordered
pub trait Builder<S: Stack + ?Sized>: Request<S> {}