pub trait Network: Copy + Clone + Debug + Display + FromStr + Send + Sync + 'static + Eq + Ord + Sized + Hash {
    const NAME: &'static str;
}
Expand description

The interface for a generic network.

Required Associated Constants§

source

const NAME: &'static str

Implementors§