Struct riot_sys::coap_hdr_t
source · #[repr(C, packed(1))]pub struct coap_hdr_t {
pub ver_t_tkl: u8,
pub code: u8,
pub id: u16,
}
Expand description
@brief Raw CoAP PDU header structure
Fields§
§ver_t_tkl: u8
< version, token, token length
code: u8
< CoAP code (e.g.m 205)
id: u16
< Req/resp ID
Trait Implementations§
source§impl Clone for coap_hdr_t
impl Clone for coap_hdr_t
source§fn clone(&self) -> coap_hdr_t
fn clone(&self) -> coap_hdr_t
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 coap_hdr_t
impl Debug for coap_hdr_t
source§impl Default for coap_hdr_t
impl Default for coap_hdr_t
source§fn default() -> coap_hdr_t
fn default() -> coap_hdr_t
Returns the “default value” for a type. Read more
impl Copy for coap_hdr_t
Auto Trait Implementations§
impl RefUnwindSafe for coap_hdr_t
impl Send for coap_hdr_t
impl Sync for coap_hdr_t
impl Unpin for coap_hdr_t
impl UnwindSafe for coap_hdr_t
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