Struct openraft_memstore::TypeConfig

source ·
pub struct TypeConfig {}
Expand description

Declare the type configuration for MemStore.

Trait Implementations§

source§

impl Clone for TypeConfig

source§

fn clone(&self) -> TypeConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TypeConfig

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for TypeConfig

source§

fn default() -> TypeConfig

Returns the “default value” for a type. Read more
source§

impl Ord for TypeConfig

source§

fn cmp(&self, other: &TypeConfig) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for TypeConfig

source§

fn eq(&self, other: &TypeConfig) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for TypeConfig

source§

fn partial_cmp(&self, other: &TypeConfig) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl RaftLogReader<TypeConfig> for Arc<MemStore>

source§

async fn try_get_log_entries<RB: RangeBounds<u64> + Clone + Debug + OptionalSend>( &mut self, range: RB ) -> Result<Vec<Entry<TypeConfig>>, StorageError<MemNodeId>>

Get a series of log entries from storage. Read more
source§

impl RaftSnapshotBuilder<TypeConfig> for Arc<MemStore>

source§

impl RaftStorage<TypeConfig> for Arc<MemStore>

source§

async fn get_log_state( &mut self ) -> Result<LogState<TypeConfig>, StorageError<MemNodeId>>

Returns the last deleted log id and the last log id. Read more
source§

async fn save_vote( &mut self, vote: &Vote<MemNodeId> ) -> Result<(), StorageError<MemNodeId>>

To ensure correctness: the vote must be persisted on disk before returning.
source§

async fn read_vote( &mut self ) -> Result<Option<Vote<MemNodeId>>, StorageError<MemNodeId>>

source§

async fn save_committed( &mut self, committed: Option<LogId<MemNodeId>> ) -> Result<(), StorageError<MemNodeId>>

Saves the last committed log id to storage. Read more
source§

async fn read_committed( &mut self ) -> Result<Option<LogId<MemNodeId>>, StorageError<MemNodeId>>

Return the last saved committed log id by Self::save_committed.
source§

async fn last_applied_state( &mut self ) -> Result<(Option<LogId<MemNodeId>>, StoredMembership<MemNodeId, ()>), StorageError<MemNodeId>>

Returns the last applied log id which is recorded in state machine, and the last applied membership config. Read more
source§

async fn delete_conflict_logs_since( &mut self, log_id: LogId<MemNodeId> ) -> Result<(), StorageError<MemNodeId>>

Delete conflict log entries since log_id, inclusive. Read more
source§

async fn purge_logs_upto( &mut self, log_id: LogId<MemNodeId> ) -> Result<(), StorageError<MemNodeId>>

Delete applied log entries upto log_id, inclusive. Read more
source§

async fn append_to_log<I>( &mut self, entries: I ) -> Result<(), StorageError<MemNodeId>>

Append a payload of entries to the log. Read more
source§

async fn apply_to_state_machine( &mut self, entries: &[Entry<TypeConfig>] ) -> Result<Vec<ClientResponse>, StorageError<MemNodeId>>

Apply the given payload of entries to the state machine. Read more
source§

async fn begin_receiving_snapshot( &mut self ) -> Result<Box<<TypeConfig as RaftTypeConfig>::SnapshotData>, StorageError<MemNodeId>>

Create a new blank snapshot, returning a writable handle to the snapshot object. Read more
source§

async fn install_snapshot( &mut self, meta: &SnapshotMeta<MemNodeId, ()>, snapshot: Box<<TypeConfig as RaftTypeConfig>::SnapshotData> ) -> Result<(), StorageError<MemNodeId>>

Install a snapshot which has finished streaming from the leader. Read more
source§

async fn get_current_snapshot( &mut self ) -> Result<Option<Snapshot<TypeConfig>>, StorageError<MemNodeId>>

Get a readable handle to the current snapshot, along with its metadata. Read more
§

type LogReader = Arc<MemStore>

Log reader type.
§

type SnapshotBuilder = Arc<MemStore>

Snapshot builder type.
source§

async fn get_log_reader(&mut self) -> Self::LogReader

Get the log reader. Read more
source§

async fn get_snapshot_builder(&mut self) -> Self::SnapshotBuilder

Get the snapshot builder for the state machine. Read more
source§

impl RaftTypeConfig for TypeConfig

§

type D = ClientRequest

Application-specific request data passed to the state machine.
§

type R = ClientResponse

Application-specific response data returned by the state machine.
§

type Node = ()

Raft application level node data
§

type NodeId = u64

A Raft node’s ID.
§

type Entry = Entry<TypeConfig>

Raft log entry, which can be built from an AppData.
§

type SnapshotData = Cursor<Vec<u8>>

Snapshot data for exposing a snapshot for reading & writing. Read more
§

type Responder = OneshotResponder<TypeConfig>

Send the response or error of a client write request(WriteResult). Read more
§

type AsyncRuntime = TokioRuntime

Asynchronous runtime type.
source§

impl Copy for TypeConfig

source§

impl Eq for TypeConfig

source§

impl StructuralPartialEq for TypeConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> OptionalSend for T
where T: Send + ?Sized,

source§

impl<T> OptionalSync for T
where T: Sync + ?Sized,