//! libcoap-rs is based on libcoap-sys, which provide many different ways to obtain and link against
//! For your convenience, libcoap-rs "re-exports" some features that do not have any influence on
//! This way, you don't need to add libcoap-sys as a dependency yourself, and may just enable the
//! This example runs a simple CoAP client which makes a request to `coap://[::1]:5683/hello_world`
//! let mut request = CoapRequest::new(CoapMessageType::Con, CoapRequestCode::Get, uri).unwrap();
//! context.add_endpoint_udp("[::1]:5683".parse().unwrap()).expect("Unable to add/bind to endpoint");
//! |completed: &mut (), session: &mut CoapServerSession, request: &CoapRequest, mut response: CoapResponse| {