Struct riot_sys::coap_block_slicer_t
source · #[repr(C)]pub struct coap_block_slicer_t {
pub start: size_t,
pub end: size_t,
pub cur: size_t,
pub opt: *mut u8,
}
Expand description
@brief Blockwise transfer helper struct
Fields§
§start: size_t
< Start offset of the current block
end: size_t
< End offset of the current block
cur: size_t
< Offset of the generated content
opt: *mut u8
< Pointer to the placed option
Trait Implementations§
source§impl Clone for coap_block_slicer_t
impl Clone for coap_block_slicer_t
source§fn clone(&self) -> coap_block_slicer_t
fn clone(&self) -> coap_block_slicer_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_block_slicer_t
impl Debug for coap_block_slicer_t
source§impl Default for coap_block_slicer_t
impl Default for coap_block_slicer_t
impl Copy for coap_block_slicer_t
Auto Trait Implementations§
impl RefUnwindSafe for coap_block_slicer_t
impl !Send for coap_block_slicer_t
impl !Sync for coap_block_slicer_t
impl Unpin for coap_block_slicer_t
impl UnwindSafe for coap_block_slicer_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