#[repr(C)]pub struct yyjson_val_pool {
pub cur: *mut yyjson_mut_val,
pub end: *mut yyjson_mut_val,
pub chunk_size: usize,
pub chunk_size_max: usize,
pub chunks: *mut yyjson_val_chunk,
}Expand description
A memory pool to hold all values in a mutable document.
Fields§
§cur: *mut yyjson_mut_val§end: *mut yyjson_mut_val§chunk_size: usize§chunk_size_max: usize§chunks: *mut yyjson_val_chunkTrait Implementations§
Source§impl Clone for yyjson_val_pool
impl Clone for yyjson_val_pool
Source§fn clone(&self) -> yyjson_val_pool
fn clone(&self) -> yyjson_val_pool
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_val_pool
impl Debug for yyjson_val_pool
impl Copy for yyjson_val_pool
Auto Trait Implementations§
impl Freeze for yyjson_val_pool
impl RefUnwindSafe for yyjson_val_pool
impl !Send for yyjson_val_pool
impl !Sync for yyjson_val_pool
impl Unpin for yyjson_val_pool
impl UnwindSafe for yyjson_val_pool
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