Struct vapcore_light::cache::CacheSizes[][src]

pub struct CacheSizes {
    pub headers: usize,
    pub canon_hashes: usize,
    pub bodies: usize,
    pub receipts: usize,
    pub chain_score: usize,
}

Configuration for how much data to cache.

Fields

headers: usize

Maximum size, in bytes, of cached headers.

canon_hashes: usize

Maximum size, in bytes, of cached canonical hashes.

bodies: usize

Maximum size, in bytes, of cached block bodies.

receipts: usize

Maximum size, in bytes, of cached block receipts.

chain_score: usize

Maximum size, in bytes, of cached chain score for the block.

Trait Implementations

impl Clone for CacheSizes[src]

impl Copy for CacheSizes[src]

impl Debug for CacheSizes[src]

impl Default for CacheSizes[src]

impl Eq for CacheSizes[src]

impl PartialEq<CacheSizes> for CacheSizes[src]

impl StructuralEq for CacheSizes[src]

impl StructuralPartialEq for CacheSizes[src]

Auto Trait Implementations

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<T> Erased for T

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

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

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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