[][src]Struct raft::storage::MemStorage

pub struct MemStorage { /* fields omitted */ }

MemStorage is a thread-safe implementation of Storage trait. It is mainly used for test purpose.

Methods

impl MemStorage[src]

pub fn new() -> MemStorage[src]

Returns a new memory storage value.

pub fn rl(&self) -> RwLockReadGuard<MemStorageCore>[src]

Opens up a read lock on the storage and returns a guard handle. Use this with functions that don't require mutation.

pub fn wl(&self) -> RwLockWriteGuard<MemStorageCore>[src]

Opens up a write lock on the storage and returns guard handle. Use this with functions that take a mutable reference to self.

Trait Implementations

impl Storage for MemStorage[src]

fn initial_state(&self) -> Result<RaftState>[src]

Implements the Storage trait.

fn entries(&self, low: u64, high: u64, max_size: u64) -> Result<Vec<Entry>>[src]

Implements the Storage trait.

fn term(&self, idx: u64) -> Result<u64>[src]

Implements the Storage trait.

fn first_index(&self) -> Result<u64>[src]

Implements the Storage trait.

fn last_index(&self) -> Result<u64>[src]

Implements the Storage trait.

fn snapshot(&self) -> Result<Snapshot>[src]

Implements the Storage trait.

impl Default for MemStorage[src]

impl Clone for MemStorage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for MemStorage

impl Sync for MemStorage

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.