vecdb 0.10.1

High-performance mutable persistent vectors built on rawdb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::VecValue;

use super::Bytes;

/// Value trait for BytesVec.
/// Extends RawVecValue with Bytes trait for custom serialization.
pub trait BytesVecValue
where
    Self: VecValue + Bytes,
{
}

impl<T> BytesVecValue for T where T: VecValue + Bytes {}