Struct froggy::ReadLock [] [src]

pub struct ReadLock<'a, T: 'a> { /* fields omitted */ }

Read lock on the storage, allows multiple clients to read from the same storage simultaneously.

Methods

impl<'a, T> ReadLock<'a, T>
[src]

Iterate all components in this locked storage.

Iterate all components that are still referenced by something.

Pin an iterated item with a newly created Pointer.

Trait Implementations

impl<'a, 'b, T> Index<&'b Pointer<T>> for ReadLock<'a, T>
[src]

The returned type after indexing

The method for the indexing (container[index]) operation