[][src]Struct storaget::Storage

pub struct Storage<T> { /* fields omitted */ }

Methods

impl<T> Storage<T> where
    T: StorageObject
[src]

pub fn load_or_init<U>(path: &'static str) -> StorageResult<Self> where
    T: Deserialize<'de>, 
[src]

pub fn add_to_storage(&self, object: T) -> StorageResult<()>[src]

pub fn get_by_id(&self, id: &str) -> StorageResult<DataObject<T>>[src]

pub fn get_by_ids(
    &self,
    ids: &[&str]
) -> Vec<(String, StorageResult<DataObject<T>>)>
[src]

pub fn data(&self) -> Vec<Arc<Mutex<T>>>[src]

pub fn into_data_objects(&self) -> Vec<DataObject<T>>[src]

pub fn remove(&self) -> StorageResult<()>[src]

Trait Implementations

impl<'_, T> IntoIterator for &'_ Storage<T> where
    T: StorageObject
[src]

type Item = DataObject<T>

The type of the elements being iterated over.

type IntoIter = DataIter<T>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<T> RefUnwindSafe for Storage<T>

impl<T> Send for Storage<T> where
    T: Send

impl<T> Sync for Storage<T> where
    T: Send

impl<T> Unpin for Storage<T>

impl<T> UnwindSafe for Storage<T>

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 = !

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>,