Struct pool::Checkout [] [src]

pub struct Checkout<T> {
    // some fields omitted
}

A handle to a checked out value

Methods

impl<T> Checkout<T>
[src]

fn extra(&self) -> &[u8]

Extra bytes that can be read from

fn extra_mut(&self) -> &mut [u8]

Extra bytes that can be written to

Trait Implementations

impl<T> Deref for Checkout<T>
[src]

type Target = T

The resulting type after dereferencing

fn deref(&self) -> &T

The method called to dereference a value

impl<T> DerefMut for Checkout<T>
[src]

fn deref_mut(&mut self) -> &mut T

The method called to mutably dereference a value

impl<T> Drop for Checkout<T>
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more

impl<T: Send> Send for Checkout<T>
[src]

impl<T: Sync> Sync for Checkout<T>
[src]