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

pub struct MemStorage { /* fields omitted */ }

MemStorage is a thread-safe but incomplete implementation of Storage, mainly for tests.

A real Storage should save both raft logs and applied data. However MemStorage only contains raft logs. So you can call MemStorage::append to persist new received unstable raft logs and then access them with Storage APIs. The only exception is Storage::snapshot. There is no data in Snapshot returned by MemStorage::snapshot because applied data is not stored in MemStorage.

Methods

impl MemStorage[src]

pub fn new() -> MemStorage[src]

Returns a new memory storage value.

pub fn new_with_conf_state<T>(conf_state: T) -> MemStorage where
    ConfState: From<T>, 
[src]

Create a new MemStorage with a given Config. The given Config will be used to initialize the storage.

pub fn initialize_with_conf_state<T>(&self, conf_state: T) where
    ConfState: From<T>, 
[src]

Initialize a MemStorage with a given Config.

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: impl Into<Option<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, request_index: u64) -> Result<Snapshot>[src]

Implements the Storage trait.

impl Clone for MemStorage[src]

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

Performs copy-assignment from source. Read more

impl Default for MemStorage[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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 = 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,