brk_vecs 0.0.85

A KISS index/value store
Documentation
use std::fmt::Debug;

use serde::Serialize;
use zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout};

pub trait StoredRaw
where
    Self: Sized
        + Debug
        + Clone
        + FromBytes
        + IntoBytes
        + Immutable
        + KnownLayout
        + Send
        + Sync
        + Serialize,
{
}

impl<T> StoredRaw for T where
    T: Sized
        + Debug
        + Clone
        + FromBytes
        + IntoBytes
        + Immutable
        + KnownLayout
        + Send
        + Sync
        + Serialize
{
}