Enum ca_formats::macrocell::NodeData [−][src]
pub enum NodeData {
Level1 {
nw: u8,
ne: u8,
sw: u8,
se: u8,
},
Level3(u64),
Node {
level: u8,
nw: usize,
ne: usize,
sw: usize,
se: usize,
},
}Expand description
Data in a Node.
Variants
A level 1 leaf, representing a 2x2 square, in rules with more than 2 states.
The data contains the states of four cells in the square.
Level3(u64)A level 3 leaf, representing a 8x8 square, in rules with 2 states.
The data is represented by a 64-bit integer.
A non-leaf node.
The data contains the level of the node, and the ids of four children.
Implementations
Trait Implementations
impl Ord for NodeData[src]
impl Ord for NodeData[src]impl PartialOrd<NodeData> for NodeData[src]
impl PartialOrd<NodeData> for NodeData[src]fn partial_cmp(&self, other: &NodeData) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &NodeData) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for NodeData[src]
impl Eq for NodeData[src]
impl StructuralEq for NodeData[src]
impl StructuralPartialEq for NodeData[src]
Auto Trait Implementations
impl RefUnwindSafe for NodeData
impl Send for NodeData
impl Sync for NodeData
impl Unpin for NodeData
impl UnwindSafe for NodeData
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more