[][src]Struct stor_age::Acc

pub struct Acc { /* fields omitted */ }

Methods

impl Acc[src]

pub fn new() -> Acc[src]

pub fn with_total(self, total: u64) -> Acc[src]

pub fn get_accessed_bytes(&self, age: u64) -> Option<u64>[src]

pub fn get_modified_bytes(&self, age: u64) -> Option<u64>[src]

pub fn get_total_bytes(&self) -> u64[src]

pub fn get_ages(&self) -> Vec<&u64>[src]

pub fn insert(&mut self, age: u64, accessed: u64, modified: u64)[src]

Trait Implementations

impl Default for Acc[src]

impl AddAssign<Acc> for Acc[src]

Auto Trait Implementations

impl Unpin for Acc

impl Sync for Acc

impl Send for Acc

impl UnwindSafe for Acc

impl RefUnwindSafe for Acc

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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