pub struct Manager(/* private fields */);Implementations§
Source§impl Manager
LDAP Manager for the deadpool managed connection pool.
impl Manager
LDAP Manager for the deadpool managed connection pool.
Sourcepub fn new<S: Into<String>>(ldap_url: S) -> Self
pub fn new<S: Into<String>>(ldap_url: S) -> Self
Creates a new manager with the given URL. URL can be anything that can go Into a String (e.g. String or &str)
Sourcepub fn with_connection_settings(self, settings: LdapConnSettings) -> Self
pub fn with_connection_settings(self, settings: LdapConnSettings) -> Self
Set a custom LdapConnSettings object on the manager. Returns a copy of the Manager.
Trait Implementations§
Source§impl Manager for Manager
impl Manager for Manager
Source§fn create<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Self::Type, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn create<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Self::Type, Self::Error>> + 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 Freeze for Manager
impl RefUnwindSafe for Manager
impl Send for Manager
impl Sync for Manager
impl Unpin for Manager
impl UnwindSafe for Manager
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