pub trait Value {
    type Type;
}
Expand description

The Value trait provides an abstract notion of a value.

All we know about values abstractly is that they have a Type.

Required Associated Types§

source

type Type

The type of this value.

Implementations on Foreign Types§

source§

impl<T: Value> Value for Vec<T>

§

type Type = <T as Value>::Type

Implementors§