pub trait BigEndianEncode {
type Bytes;
// Required method
fn to_be_canonical(self) -> Self::Bytes;
}Expand description
Canonical big-endian encoding for on-disk SQLite-compatible structures.
pub trait BigEndianEncode {
type Bytes;
// Required method
fn to_be_canonical(self) -> Self::Bytes;
}Canonical big-endian encoding for on-disk SQLite-compatible structures.