[][src]Struct shine_stdext::namedstore::ReadGuard

pub struct ReadGuard<'a, D: Data> { /* fields omitted */ }

Guarded read access to a store

Methods

impl<'a, D: 'a + Data> ReadGuard<'a, D>[src]

pub fn try_get(&self, k: &D::Key) -> Option<Index<D>>[src]

Try to get the index of a resource by the key. If the global container is not accessible (ex. update is in progress), a null index is returned.

pub fn get_blocking(&self, k: &D::Key) -> Option<Index<D>>[src]

pub fn get_or_add_blocking(&mut self, k: &D::Key) -> Index<D>[src]

pub fn at(&self, index: &Index<D>) -> &D[src]

Trait Implementations

impl<'a, 'i, D: 'a + Data> Index<&'i Index<D>> for ReadGuard<'a, D>[src]

type Output = D

The returned type after indexing.

Auto Trait Implementations

impl<'a, D> !Send for ReadGuard<'a, D>

impl<'a, D> !Sync for ReadGuard<'a, D>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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 for T where
    T: ?Sized
[src]

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

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