Struct lazy_pool::Pool

source ·
pub struct Pool<T: Send> { /* private fields */ }

Implementations§

source§

impl<T: Send + 'static> Pool<T>

source

pub async fn new<F>(size: usize, factory: F) -> Result<Self>where SyncFactory<T>: From<F>,

Default constructor for the Pool object:




let pool = block_on(async { Pool::new(10, Box::new(|| AnyObject)).await.unwrap() });

The pool requires an object factory in order to be able to provide lazy initialization for objects. Any synchronous closure can be used to create a SyncFactory.

source

pub async fn new_with_factory<F>(size: usize, factory: F) -> Result<Self>where F: Factory<T> + 'static,

Creating a Pool instance with a Factory Check Factory docs for an example of creating an async factory.

source

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

To get an object out of the pool use get. This will return a future so you either need to await on it or to use it in an async manner




let object = block_on(async {
    let pool = Pool::new(10, Box::new(|| AnyObject)).await.unwrap();
    get!(object = pool => {
        // Object was retrieved and assigned to `object`. It will be put back at
        // the end of this block, unless it's marked as tainted.
        Pooled::tainted(&mut object);
    });
});

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Pool<T>

§

impl<T> Send for Pool<T>

§

impl<T> Sync for Pool<T>

§

impl<T> Unpin for Pool<T>

§

impl<T> !UnwindSafe for Pool<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.