WeakPool

Struct WeakPool 

Source
pub struct WeakPool<M: Manager, W: From<Object<M>> = Object<M>> { /* private fields */ }
Expand description

A weak reference to a Pool<T>, used to avoid keeping the pool alive.

WeakPool<T> is analogous to std::sync::Weak<T> for Pool<T>, and is typically used in situations where you need a non-owning reference to a pool, such as in background tasks, managers, or callbacks that should not extend the lifetime of the pool.

This allows components to retain a reference to the pool while avoiding reference cycles or prolonging its lifetime unnecessarily.

To access the pool, use WeakPool::upgrade to attempt to get a strong reference.

Implementations§

Source§

impl<M: Manager, W: From<Object<M>>> WeakPool<M, W>

Source

pub fn upgrade(&self) -> Option<Pool<M, W>>

Attempts to upgrade the WeakPool to a strong Pool<T> reference.

If the pool has already been dropped (i.e., no strong references remain), this returns None.

Trait Implementations§

Source§

impl<M: Debug + Manager, W: Debug + From<Object<M>>> Debug for WeakPool<M, W>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<M, W> Freeze for WeakPool<M, W>

§

impl<M, W = Object<M>> !RefUnwindSafe for WeakPool<M, W>

§

impl<M, W> Send for WeakPool<M, W>

§

impl<M, W> Sync for WeakPool<M, W>

§

impl<M, W> Unpin for WeakPool<M, W>

§

impl<M, W = Object<M>> !UnwindSafe for WeakPool<M, W>

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>,

Source§

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>,

Source§

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.