coap_add_attr, coap_delete_resource, coap_new_str_const, coap_pdu_t, coap_register_request_handler,
coap_resource_get_uri_path, coap_resource_get_userdata, coap_resource_init, coap_resource_notify_observers,
coap_resource_set_get_observable, coap_resource_set_mode, coap_resource_set_userdata, coap_resource_t,
coap_send_rst, coap_session_t, coap_string_t, COAP_ATTR_FLAGS_RELEASE_NAME, COAP_ATTR_FLAGS_RELEASE_VALUE,
//trait CoapMethodHandlerFn<D> = FnMut(&D, &mut CoapSession, &CoapRequestMessage, &mut CoapResponseMessage);
#[allow(clippy::unnecessary_mut_passed)] // We don't know whether the function needs a mutable reference or not.
/// Converts the raw parameters provided to a request handler into the appropriate wrapped types.
/// If an error occurs while parsing the resource data, this function will send an RST message to the
) -> Result<(CoapResource<D>, CoapServerSession<'a>, CoapRequest, CoapResponse), MessageConversionError> {
let request = CoapMessage::from_raw_pdu(raw_incoming_pdu).and_then(|v| CoapRequest::from_message(v, &session));
let response = CoapMessage::from_raw_pdu(raw_response_pdu).and_then(CoapResponse::from_message);
/// - ...free the returned value using [coap_delete_resource](libcoap_sys::coap_delete_resource)
pub fn new<C: Into<Box<D>>>(uri_path: &str, user_data: C, notify_con: bool) -> CoapResource<D> {
unsafe { coap_resource_notify_observers(self.inner.borrow_mut().raw_resource, std::ptr::null_mut()) != 0 }
unsafe { coap_resource_set_get_observable(self.inner.borrow_mut().raw_resource, observable as c_int) }
pub fn set_method_handler<H: Into<CoapRequestHandler<D>>>(&self, code: CoapRequestCode, handler: Option<H>) {
return std::str::from_utf8_unchecked(std::slice::from_raw_parts((*raw_path).s, (*raw_path).length));
CoapFfiRcCell::<CoapResourceInner<D>>::raw_ptr_to_weak(coap_resource_get_userdata(self.raw_resource))
/// This handler can be associated with a [CoapResource] in order to be called when a request for
/// the associated resource and the provided method arrives. The handler is then able to generate
/// - Using [CoapRequestHandler::new_resource_ref]: Preferred for closures if you need access to
/// For method 2, the provided handler has to be a `FnMut(&mut D, &mut CoapServerSession, &CoapRequest, CoapResponse)`,
/// while for the other two methods, the handler has to be a `FnMut(&CoapResource<D>, &mut CoapServerSession, &CoapRequest, CoapResponse)`,
/// easy to pass a method as a handler, while getting the [CoapResource] gives you the option to
/// - The server-side session with the peer this request was received from. You may want to store or
/// retrieve additional information about the peer using [CoapSessionCommon::set_app_data()] and
// We'll allow the complex type as trait aliases are experimental and we'll probably want to use
/// In contrast to [CoapRequestHandler::new], the handler for this function is not provided with
/// The handler function must not modify the user data value inside of the provided raw resource
// We'll allow the complex type as trait aliases are experimental and we'll probably want to use
let handler_fn: Option<Box<dyn FnMut(&CoapResource<D>, &mut CoapServerSession, &CoapRequest, CoapResponse)>> =