[][src]Struct reddb::FileStorage

pub struct FileStorage<SE> { /* fields omitted */ }

Implementations

impl<SE> FileStorage<SE> where
    SE: Serializer<'de> + Debug
[src]

pub async fn compact_data<T>(
    &self,
    data: &HashMap<Uuid, Vec<u8>>
) -> Result<(), RedDbError> where
    T: Serialize + Deserialize<'de> + Debug + PartialEq
[src]

Trait Implementations

impl<SE: Debug> Debug for FileStorage<SE>[src]

Auto Trait Implementations

impl<SE> !RefUnwindSafe for FileStorage<SE>[src]

impl<SE> Send for FileStorage<SE> where
    SE: Send
[src]

impl<SE> Sync for FileStorage<SE> where
    SE: Sync
[src]

impl<SE> Unpin for FileStorage<SE> where
    SE: Unpin
[src]

impl<SE> !UnwindSafe for FileStorage<SE>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,