#[repr(C)]pub struct otCoapResource {
pub mUriPath: *const c_char,
pub mHandler: otCoapRequestHandler,
pub mContext: *mut c_void,
pub mNext: *mut otCoapResource,
}
Expand description
Represents a CoAP resource.
Fields§
§mUriPath: *const c_char
< The URI Path string
mHandler: otCoapRequestHandler
< The callback for handling a received request
mContext: *mut c_void
< Application-specific context
mNext: *mut otCoapResource
< The next CoAP resource in the list
Trait Implementations§
Source§impl Clone for otCoapResource
impl Clone for otCoapResource
Source§fn clone(&self) -> otCoapResource
fn clone(&self) -> otCoapResource
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for otCoapResource
impl Debug for otCoapResource
Source§impl Default for otCoapResource
impl Default for otCoapResource
impl Copy for otCoapResource
Auto Trait Implementations§
impl Freeze for otCoapResource
impl RefUnwindSafe for otCoapResource
impl !Send for otCoapResource
impl !Sync for otCoapResource
impl Unpin for otCoapResource
impl UnwindSafe for otCoapResource
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)