vecdb/traits/
value.rs

1use std::fmt::Debug;
2
3/// Marker trait for types that can be stored as values in a vector.
4///
5/// This trait is automatically implemented for any type that satisfies the
6/// required bounds. No manual implementation is needed.
7pub trait VecValue
8where
9    Self: Sized + Debug + Clone + Send + Sync + 'static,
10{
11}
12
13impl<T> VecValue for T where T: Sized + Debug + Clone + Send + Sync + 'static {}