Trait Val

Source
pub trait Val:
    FromStr
    + Clone
    + Ord
    + Display
    + Debug
    + Clone
    + Send { }
Expand description

Trait defining the minimum requirements to be a value

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> Val for T
where T: FromStr + Clone + Ord + Display + Debug + Send,