[][src]Struct rdms::no_disk::NoDisk

pub struct NoDisk<K, V> { /* fields omitted */ }

NoDisk type denotes empty Disk type. Applications can use this type while instantiating rdms-index in mem-only mode.

Trait Implementations

impl<K, V> Footprint for NoDisk<K, V>[src]

impl<K, V> Index<K, V> for NoDisk<K, V> where
    K: Clone + Ord + Footprint,
    V: Clone + Diff + Footprint
[src]

type W = NoDisk<K, V>

A writer type, that can ingest key-value pairs, associated with this index. Read more

type R = NoDisk<K, V>

A writer type, that can ingest key-value pairs, associated with this index. Read more

impl<K, V> Reader<K, V> for NoDisk<K, V> where
    K: Clone + Ord,
    V: Clone + Diff
[src]

impl<K, V> Writer<K, V> for NoDisk<K, V> where
    K: Clone + Ord + Footprint,
    V: Clone + Diff + Footprint
[src]

Auto Trait Implementations

impl<K, V> Send for NoDisk<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for NoDisk<K, V> where
    K: Sync,
    V: Sync

impl<K, V> Unpin for NoDisk<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for NoDisk<K, V> where
    K: UnwindSafe,
    V: UnwindSafe

impl<K, V> RefUnwindSafe for NoDisk<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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