pub trait CRUDActionSpec<T> {
    fn commit(&self, data: Vec<T>) -> Result<String, BoxError>
    where
        Self: Sized
; fn data(&self) -> Vec<T>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator

    where
        Self: Sized
; }
Expand description

Required Methods

Implementors