pub struct PooledItem<T, P> { /* private fields */ }
Expand description

An item that is borrowed from a PriorityPool.

Dropping this item will return it to the pool.

Implementations§

source§

impl<T, P> PooledItem<T, P>

source

pub fn item(&self) -> &T

Returns a reference to the item.

source

pub fn item_mut(&mut self) -> &mut T

Returns a mutable reference to the item.

source

pub fn priority(&self) -> &P

Returns a reference to the priority.

source

pub fn priority_mut(&mut self) -> &mut P

Returns a mutable reference to the priority.

Trait Implementations§

source§

impl<T, P> Debug for PooledItem<T, P>where T: Debug, P: Debug,

source§

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

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

impl<T, P> Deref for PooledItem<T, P>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<T, P> DerefMut for PooledItem<T, P>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<T, P> Drop for PooledItem<T, P>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<T, P> !RefUnwindSafe for PooledItem<T, P>

§

impl<T, P> Send for PooledItem<T, P>where P: Send, T: Send,

§

impl<T, P> Sync for PooledItem<T, P>where P: Send + Sync, T: Send + Sync,

§

impl<T, P> Unpin for PooledItem<T, P>where P: Unpin, T: Unpin,

§

impl<T, P> !UnwindSafe for PooledItem<T, P>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.