#[repr(C)]pub struct _ion_collection_node {
pub _next: *mut ION_COLLECTION_NODE,
pub _prev: *mut ION_COLLECTION_NODE,
pub _data: [u8; 8],
}Expand description
The node allocation scheme depends on this layout ! currently that there are only 2 members so it uses the size of the ptr as the base to allocate
Fields§
§_next: *mut ION_COLLECTION_NODE§_prev: *mut ION_COLLECTION_NODE§_data: [u8; 8]Trait Implementations§
Source§impl Clone for _ion_collection_node
impl Clone for _ion_collection_node
Source§fn clone(&self) -> _ion_collection_node
fn clone(&self) -> _ion_collection_node
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 _ion_collection_node
impl Debug for _ion_collection_node
Source§impl Default for _ion_collection_node
impl Default for _ion_collection_node
impl Copy for _ion_collection_node
Auto Trait Implementations§
impl Freeze for _ion_collection_node
impl RefUnwindSafe for _ion_collection_node
impl !Send for _ion_collection_node
impl !Sync for _ion_collection_node
impl Unpin for _ion_collection_node
impl UnwindSafe for _ion_collection_node
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