Trait Cluster

Source
pub trait Cluster:
    Debug
    + Clone
    + Sync
    + Send
    + 'static
    + FromStr
    + Default
    + Display
    + FromStr<Err: Display> { }
Expand description

Every cluster identifier must implement this trait to be used in the command line.

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§

Source§

impl<T> Cluster for T
where T: Debug + Clone + Sync + Send + 'static + FromStr + Default + Display, <T as FromStr>::Err: Display,