Struct taos_query::Manager
source · pub struct Manager<T> { /* private fields */ }
Expand description
This is how we manage connections.
Implementations§
Trait Implementations§
source§impl<T: AsyncTBuilder> Manager for Manager<T>
impl<T: AsyncTBuilder> Manager for Manager<T>
source§fn create<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = RawResult<Self::Type>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn create<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = RawResult<Self::Type>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Creates a new instance of
Manager::Type
.source§fn recycle<'life0, 'life1, 'async_trait>(
&'life0 self,
conn: &'life1 mut Self::Type
) -> Pin<Box<dyn Future<Output = RecycleResult<Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn recycle<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Type ) -> Pin<Box<dyn Future<Output = RecycleResult<Self::Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,
Tries to recycle an instance of
Manager::Type
. Read moreAuto Trait Implementations§
impl<T> RefUnwindSafe for Manager<T>where T: RefUnwindSafe,
impl<T> Send for Manager<T>where T: Send,
impl<T> Sync for Manager<T>where T: Sync,
impl<T> Unpin for Manager<T>where T: Unpin,
impl<T> UnwindSafe for Manager<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more