pub struct PoolGuard<'a, T: Send, F: Fn() -> T>(/* private fields */);
Available on crate feature alloc only.
Expand description

A guard that is returned when a caller requests a value from the pool.

The purpose of the guard is to use RAII to automatically put the value back in the pool once it’s dropped.

Implementations§

source§

impl<'a, T: Send, F: Fn() -> T> PoolGuard<'a, T, F>

source

pub fn put(this: PoolGuard<'_, T, F>)

Consumes this guard and puts it back into the pool.

This circumvents the guard’s Drop implementation. This can be useful in circumstances where the automatic Drop results in poorer codegen, such as calling non-inlined functions.

Trait Implementations§

source§

impl<'a, T: Send + Debug, F: Fn() -> T> Debug for PoolGuard<'a, T, F>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, T: Send, F: Fn() -> T> Deref for PoolGuard<'a, T, F>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.
source§

impl<'a, T: Send, F: Fn() -> T> DerefMut for PoolGuard<'a, T, F>

source§

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

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<'a, T, F> RefUnwindSafe for PoolGuard<'a, T, F>

§

impl<'a, T, F> Send for PoolGuard<'a, T, F>
where F: Sync + Send,

§

impl<'a, T, F> Sync for PoolGuard<'a, T, F>
where F: Sync + Send, T: Sync,

§

impl<'a, T, F> Unpin for PoolGuard<'a, T, F>

§

impl<'a, T, F> UnwindSafe for PoolGuard<'a, T, F>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.