Trait infinitree::fields::Value

source ·
pub trait Value: Serialize + DeserializeOwned + Send + Sync { }
Expand description

Marker trait for values that can be serialized and used as a value for an index field

You should generally not implement this trait as a blanket implementation will cover all types that conform.

Implementors§

source§

impl<T> Value for Twhere T: Serialize + DeserializeOwned + Send + Sync,