Struct indradb::MemoryDatastore [−][src]
An in-memory datastore.
Implementations
impl MemoryDatastore[src]
pub fn read<P: Into<PathBuf>>(
path: P
) -> StdResult<MemoryDatastore, BincodeError>[src]
path: P
) -> StdResult<MemoryDatastore, BincodeError>
Reads a persisted image from disk. Calls to sync will overwrite the file at the specified path.
Arguments
path: The path to the persisted image.
pub fn create<P: Into<PathBuf>>(
path: P
) -> StdResult<MemoryDatastore, BincodeError>[src]
path: P
) -> StdResult<MemoryDatastore, BincodeError>
Creates a new datastore. Calls to sync will overwrite the file at the
specified path, but as opposed to read, this will not read the file
first.
Arguments
path: The path to the persisted image.
Trait Implementations
impl Clone for MemoryDatastore[src]
fn clone(&self) -> MemoryDatastore[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Datastore for MemoryDatastore[src]
type Trans = MemoryTransaction
fn sync(&self) -> Result<()>[src]
fn transaction(&self) -> Result<Self::Trans>[src]
fn bulk_insert<I>(&self, items: I) -> Result<()> where
I: Iterator<Item = BulkInsertItem>, [src]
I: Iterator<Item = BulkInsertItem>,
impl Debug for MemoryDatastore[src]
impl Default for MemoryDatastore[src]
fn default() -> MemoryDatastore[src]
Auto Trait Implementations
impl RefUnwindSafe for MemoryDatastore[src]
impl Send for MemoryDatastore[src]
impl Sync for MemoryDatastore[src]
impl Unpin for MemoryDatastore[src]
impl UnwindSafe for MemoryDatastore[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,