[][src]Struct exonum_merkledb::ReadonlyFork

pub struct ReadonlyFork<'a>(_);

Readonly wrapper for a Fork.

This wrapper allows to read from index state from the fork in a type-safe manner (it is impossible to accidentally modify data in the index), and without encountering runtime errors when attempting to concurrently get the same index more than once.

Since the wrapper borrows the Fork immutably, it is still possible to access indexes in the fork directly. In this scenario, the caller should be careful that ReadonlyFork does not access the same indexes as the original Fork: this will result in a runtime error (sort of like attempting both an exclusive and a shared borrow from a RefCell or RwLock).

Examples

let db = TemporaryDB::new();
let fork = db.fork();
fork.get_list("list").push(1_u32);
let readonly: ReadonlyFork<'_> = fork.readonly();
let list = readonly.get_list::<_, u32>("list");
assert_eq!(list.get(0), Some(1));
let same_list = readonly.get_list::<_, u32>("list");
// ^-- Does not result in an error!

// Original fork is still accessible.
let mut map = fork.get_map("map");
map.put(&1_u32, "foo".to_string());

There are no write methods in indexes instantiated from ReadonlyFork:

This example deliberately fails to compile
let db = TemporaryDB::new();
let fork = db.fork();
let readonly: ReadonlyFork<'_> = fork.readonly();
let mut list = readonly.get_list("list");
list.push(1_u32); // Won't compile: no `push` method in `ListIndex<ReadonlyFork, u32>`!

Trait Implementations

impl<'a> AsReadonly for ReadonlyFork<'a>[src]

type Readonly = Self

Readonly version of the access.

impl<'a> Clone for ReadonlyFork<'a>[src]

impl<'a> Copy for ReadonlyFork<'a>[src]

impl<'a> Debug for ReadonlyFork<'a>[src]

impl<'a> From<ReadonlyFork<'a>> for GenericRawAccess<'a>[src]

impl<'a> IntoErased<'a> for ReadonlyFork<'a>[src]

impl<'a> RawAccess for ReadonlyFork<'a>[src]

type Changes = ChangesRef<'a>

Type of the changes() that will be applied to the database.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ReadonlyFork<'a>

impl<'a> !Send for ReadonlyFork<'a>

impl<'a> !Sync for ReadonlyFork<'a>

impl<'a> Unpin for ReadonlyFork<'a>

impl<'a> !UnwindSafe for ReadonlyFork<'a>

Blanket Implementations

impl<T> Access for T where
    T: RawAccess
[src]

type Base = T

Raw access serving as the basis for created indexes.

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

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