[][src]Trait mhdb::Source

pub trait Source: Write + Read + Seek + Sync + Send { }

Trait required by database sources. Automatically implemented for standard library types such as File and Cursor.

Allows in-memory databases using Cursor<Vec<u8>>.

Implementors

impl<S: Write + Read + Seek + Sync + Send> Source for S[src]

Loading content...