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.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Value for T