[][src]Struct kitty_pool::pool::contiguous::ContiguousKittyPool

pub struct ContiguousKittyPool { /* fields omitted */ }

Methods

impl ContiguousKittyPool[src]

pub fn ranges(&self) -> &Ranges[src]

pub fn buffer(&self) -> &Box<Buffer>[src]

pub fn capacity(&self) -> &usize[src]

pub fn capacity_remaining(&self) -> &usize[src]

pub fn block_size(&self) -> &usize[src]

pub fn range_map(&self) -> &HashMap<Token, Ranges>[src]

impl ContiguousKittyPool[src]

pub fn ranges_mut(&mut self) -> &mut Ranges[src]

pub fn buffer_mut(&mut self) -> &mut Box<Buffer>[src]

pub fn range_map_mut(&mut self) -> &mut HashMap<Token, Ranges>[src]

impl ContiguousKittyPool[src]

pub fn new(buffer_size: usize, block_size: usize) -> Self[src]

Trait Implementations

impl Debug for ContiguousKittyPool[src]

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,