ValueType

Trait ValueType 

Source
pub trait ValueType:
    Comparable
    + Clone
    + Debug { }
Expand description

A “type alias” for Values which are stored in our heap

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> ValueType for T
where T: Comparable + Clone + Debug,