pub trait AnyExportableVec: AnyVecWithWriter + AnySerializableVec { }Expand description
Type-erased trait for vectors that are both writable and serializable.
This trait is automatically implemented for any type that implements both
AnyWritableVec and AnySerializableVec.
Implementors§
impl<V> AnyExportableVec for Vwhere
V: AnyVecWithWriter + AnySerializableVec,
Blanket implementation for all types that implement both traits.