Struct raftstore::store::peer_storage::EntryCache[][src]

struct EntryCache {
    cache: VecDeque<Entry>,
    hit: Cell<i64>,
    miss: Cell<i64>,
    mem_size_change: i64,
}

Fields

cache: VecDeque<Entry>hit: Cell<i64>miss: Cell<i64>mem_size_change: i64

Implementations

impl EntryCache[src]

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

fn fetch_entries_to(
    &self,
    begin: u64,
    end: u64,
    fetched_size: u64,
    max_size: u64,
    ents: &mut Vec<Entry>
)
[src]

fn append(&mut self, tag: &str, entries: &[Entry])[src]

pub fn compact_to(&mut self, idx: u64)[src]

fn update_mem_size_change_before_clear(&mut self)[src]

fn get_cache_vec_mem_size_change(
    &self,
    new_capacity: i64,
    old_capacity: i64
) -> i64
[src]

fn get_total_mem_size(&self) -> i64[src]

fn flush_mem_size_change(&mut self)[src]

fn flush_stats(&self)[src]

fn is_empty(&self) -> bool[src]

Trait Implementations

impl Default for EntryCache[src]

impl Drop for EntryCache[src]

Auto Trait Implementations

impl !RefUnwindSafe for EntryCache

impl Send for EntryCache

impl !Sync for EntryCache

impl Unpin for EntryCache

impl UnwindSafe for EntryCache

Blanket Implementations

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<V, W> ConvertFrom<W> for V where
    W: ConvertTo<V>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]