Enum stemflow::Node [] [src]

pub enum Node<A> where A: Access {
    Access(A),
    Dom(Arc<Domain<A>>),
}

Variants

Access
Dom

Trait Implementations

impl<A> PartialEq for Node<A> where A: Access

A node do not take into account the access mode: read, write.

fn eq(&self, other: &Self) -> bool

fn ne(&self, other: &Rhs) -> bool

impl<A> PartialOrd for Node<A> where A: Access

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

fn lt(&self, other: &Rhs) -> bool

fn le(&self, other: &Rhs) -> bool

fn gt(&self, other: &Rhs) -> bool

fn ge(&self, other: &Rhs) -> bool

impl<A> Ord for Node<A> where A: Access

fn cmp(&self, other: &Self) -> Ordering

Derived Implementations

impl<A: Eq> Eq for Node<A> where A: Access

impl<A: Clone> Clone for Node<A> where A: Access

fn clone(&self) -> Node<A>

fn clone_from(&mut self, source: &Self)