feophant 0.9.0

A SQL database server written in Rust and inspired by PostreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Provides the expected size of the serialized form so repeated serialization
/// is not needed to find space.

pub trait ConstEncodedSize {
    fn encoded_size() -> usize;
}

pub trait SelfEncodedSize {
    fn encoded_size(&self) -> usize;
}
pub trait EncodedSize<T> {
    fn encoded_size(input: T) -> usize;
}