[][src]Struct screen_13::prelude::Pool

pub struct Pool {
    pub lru_threshold: usize,
    // some fields omitted
}

Fields

lru_threshold: usize

The number of frames which must elapse before a least-recently-used cache item is considered obsolete.

Remarks: Higher numbers such as 10 will use more memory but have less thrashing than lower numbers, such as 1.

Implementations

impl Pool[src]

pub fn drain(&mut self) -> Drain<'_>[src]

Allows callers to remove unused memory-consuming items from the pool.

Trait Implementations

impl Default for Pool[src]

impl Drop for Pool[src]

Auto Trait Implementations

impl !RefUnwindSafe for Pool[src]

impl !Send for Pool[src]

impl !Sync for Pool[src]

impl Unpin for Pool[src]

impl !UnwindSafe for Pool[src]

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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.