#[repr(C)]pub struct memory_node_s {
pub color: bool,
pub conf: memory_conf_t,
pub data: data_3bc_t,
pub address: address_3bc_t,
pub left: *mut memory_node_s,
pub right: *mut memory_node_s,
}Expand description
MEMORY PRIMARY
Fields§
§color: bool§conf: memory_conf_t§data: data_3bc_t§address: address_3bc_t§left: *mut memory_node_s§right: *mut memory_node_sTrait Implementations§
Source§impl Clone for memory_node_s
impl Clone for memory_node_s
Source§fn clone(&self) -> memory_node_s
fn clone(&self) -> memory_node_s
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 memory_node_s
impl Debug for memory_node_s
impl Copy for memory_node_s
Auto Trait Implementations§
impl Freeze for memory_node_s
impl RefUnwindSafe for memory_node_s
impl !Send for memory_node_s
impl !Sync for memory_node_s
impl Unpin for memory_node_s
impl UnwindSafe for memory_node_s
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