Trait sindra::value::Value [] [src]

pub trait Value: Clone + Debug + PartialEq + Display { }

Value trait (empty, just a collection of other traits). Used to specify the required traits for any stored value in a programming language.

Typically, the Value trait is implemented by an enum which contains the possible values that can occur. This is not strictly necessary, though.

Implementors