pub trait ValueType:
ToValue
+ for<'a> FromValue<'a>
+ 'static {
type Type: StaticType;
}
Expand description
A type that can be stored in Value
s.
Required Associated Types§
sourcetype Type: StaticType
type Type: StaticType
Type to get the Type
from.
This exists only for handling optional types.
Object Safety§
This trait is not object safe.