Cluster

Trait Cluster 

Source
pub trait Cluster:
    Debug
    + PartialEq
    + Eq
    + PartialOrd
    + Ord
    + Hash
    + Clone
    + Copy {
    // Required methods
    fn identifier(&self) -> &str;
    fn chain(&self) -> &str;
    fn endpoint(&self) -> &str;
    fn chains(&self) -> &'static [&'static str];
}

Required Methods§

Source

fn identifier(&self) -> &str

Source

fn chain(&self) -> &str

Source

fn endpoint(&self) -> &str

Source

fn chains(&self) -> &'static [&'static str]

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§