[−][src]Struct bb8_memcached::MemcacheConnectionManager
A bb8::ManageConnection for memcache_async::ascii::Protocol.
Implementations
impl MemcacheConnectionManager[src]
pub fn new<U: Connectable>(u: U) -> Result<MemcacheConnectionManager, Error>[src]
Trait Implementations
impl Clone for MemcacheConnectionManager[src]
fn clone(&self) -> MemcacheConnectionManager[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for MemcacheConnectionManager[src]
impl ManageConnection for MemcacheConnectionManager[src]
type Connection = Option<Connection>
The connection type this manager deals with.
type Error = Error
The error type returned by Connections.
fn connect<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn is_valid<'life0, 'async_trait>(
&'life0 self,
conn: Self::Connection
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait, [src]
&'life0 self,
conn: Self::Connection
) -> Pin<Box<dyn Future<Output = Result<Self::Connection, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn has_broken(&self, conn: &mut Self::Connection) -> bool[src]
Auto Trait Implementations
impl RefUnwindSafe for MemcacheConnectionManager
impl Send for MemcacheConnectionManager
impl Sync for MemcacheConnectionManager
impl Unpin for MemcacheConnectionManager
impl UnwindSafe for MemcacheConnectionManager
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,