monoio_client::client

Struct PooledConnection

Source
pub struct PooledConnection<M: Connector> { /* private fields */ }
Expand description

Wrapper around the actual pooled connection which implements Deref, DerefMut and Drop traits.

Use this connection just as if it was of Connection T and upon leaving a scope the Drop::drop() will take care of returning it to the pool.

Implementations§

Source§

impl<M: Connector> PooledConnection<M>

Source

pub fn take(this: Self) -> M::Connection

Takes this PooledConnection from its Client permanently. This reduces the size of the Client.

Source

pub fn purge(&mut self) -> Result<(), PurgeError>

Purge the multiplexed connection from the pool. No more forked_connections can be created from the underlying Multiplexed connection

Source

pub fn metrics(this: &Self) -> &Metrics

Get connection statistics

Source

pub fn pool(this: &Self) -> Option<Client<M>>

Returns the Client this PooledConnection belongs to.

Since PooledConnections only hold a Weak reference to the Client they come from, this can fail and return None instead.

Trait Implementations§

Source§

impl<M: Connector> AsMut<<M as Connector>::Connection> for PooledConnection<M>

Source§

fn as_mut(&mut self) -> &mut M::Connection

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl<M: Connector> AsRef<<M as Connector>::Connection> for PooledConnection<M>

Source§

fn as_ref(&self) -> &M::Connection

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<M> Debug for PooledConnection<M>
where M: Debug + Connector, M::Connection: Debug,

Source§

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

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

impl<M: Connector> Deref for PooledConnection<M>

Source§

type Target = <M as Connector>::Connection

The resulting type after dereferencing.
Source§

fn deref(&self) -> &M::Connection

Dereferences the value.
Source§

impl<M: Connector> DerefMut for PooledConnection<M>

Source§

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

Mutably dereferences the value.
Source§

impl<M: Connector> Drop for PooledConnection<M>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<M> Freeze for PooledConnection<M>
where <M as Connector>::Connection: Freeze, <M as Connector>::Key: Freeze,

§

impl<M> !RefUnwindSafe for PooledConnection<M>

§

impl<M> !Send for PooledConnection<M>

§

impl<M> !Sync for PooledConnection<M>

§

impl<M> Unpin for PooledConnection<M>
where <M as Connector>::Connection: Unpin, <M as Connector>::Key: Unpin,

§

impl<M> !UnwindSafe for PooledConnection<M>

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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.