brk_vec 0.0.81

A storeable vec
Documentation
use std::fmt::Debug;

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

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

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