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

Whether or not the node allows incoming connections

Whether or not the node allows outgoing connections

Implementors