Trait acyclic_network::NodeType [] [src]

pub trait NodeType: Clone + Debug + Send + Sized + PartialEq + Eq {
    fn accept_incoming_links(&self) -> bool;
    fn accept_outgoing_links(&self) -> bool;
}

Required Methods

If the node allows incoming connections

If the node allows outgoing connections

Implementors