#[repr(C)]pub struct DtobValue {
pub type_: DtobType,
pub custom_code: u16,
pub inner_code: u16,
pub data: *mut u8,
pub data_len: usize,
pub elements: *mut *mut DtobValue,
pub num_elements: usize,
pub pairs: *mut DtobKVPair,
pub num_pairs: usize,
}Fields§
§type_: DtobType§custom_code: u16§inner_code: u16§data: *mut u8§data_len: usize§elements: *mut *mut DtobValue§num_elements: usize§pairs: *mut DtobKVPair§num_pairs: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for DtobValue
impl RefUnwindSafe for DtobValue
impl !Send for DtobValue
impl !Sync for DtobValue
impl Unpin for DtobValue
impl UnsafeUnpin for DtobValue
impl UnwindSafe for DtobValue
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