pub trait ValueType: ToValue + for<'a> FromValue<'a> + 'static {
    type Type: StaticType;
}
Expand description

A type that can be stored in Values.

Associated Types

Type to get the Type from.

This exists only for handling optional types.

Implementations on Foreign Types

Implementors