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§
fn identifier(&self) -> &str
fn chain(&self) -> &str
fn endpoint(&self) -> &str
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.