pub struct ResourcePool<T> {
    pub holder: Arc<Mutex<ResourceHolder<T>>>,
}
Expand description

Versatile resource pool

Fields§

§holder: Arc<Mutex<ResourceHolder<T>>>

Implementations§

source§

impl<T> ResourcePool<T>

source

pub fn new() -> Self

Create new resource pool

source

pub fn with_capacity(size: usize) -> Self

Create new resource pool with pre-allocated capacity

The size parameter is used to pre-allocate memory for the resource holder only

source

pub fn append(&self, res: T)

Append resource to the pool

Panics

This function might panic when called if the resource lock is already held by the current thread

source

pub async fn get(&self) -> ResourcePoolGuard<T>

Get resource from the pool or wait until one is available

Trait Implementations§

source§

impl<T> Default for ResourcePool<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for ResourcePool<T>

§

impl<T> Send for ResourcePool<T>where T: Send,

§

impl<T> Sync for ResourcePool<T>where T: Send,

§

impl<T> Unpin for ResourcePool<T>

§

impl<T> UnwindSafe for ResourcePool<T>

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.