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.
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.