#[repr(C)]pub struct yyjson_str_chunk {
pub next: *mut yyjson_str_chunk,
pub chunk_size: usize,
}Expand description
A memory chunk in string memory pool.
Fields§
§next: *mut yyjson_str_chunk§chunk_size: usizeTrait Implementations§
Source§impl Clone for yyjson_str_chunk
impl Clone for yyjson_str_chunk
Source§fn clone(&self) -> yyjson_str_chunk
fn clone(&self) -> yyjson_str_chunk
Returns a duplicate 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 yyjson_str_chunk
impl Debug for yyjson_str_chunk
impl Copy for yyjson_str_chunk
Auto Trait Implementations§
impl Freeze for yyjson_str_chunk
impl RefUnwindSafe for yyjson_str_chunk
impl !Send for yyjson_str_chunk
impl !Sync for yyjson_str_chunk
impl Unpin for yyjson_str_chunk
impl UnwindSafe for yyjson_str_chunk
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