pub struct Authenticate<'r, C: Connection> { /* private fields */ }
Expand description
An authentication future
Trait Implementations§
Source§impl<'r, C: Debug + Connection> Debug for Authenticate<'r, C>
impl<'r, C: Debug + Connection> Debug for Authenticate<'r, C>
Source§impl<'r, Client> IntoFuture for Authenticate<'r, Client>where
Client: Connection,
impl<'r, Client> IntoFuture for Authenticate<'r, Client>where
Client: Connection,
Source§type IntoFuture = Pin<Box<dyn Future<Output = <Authenticate<'r, Client> as IntoFuture>::Output> + Send + Sync + 'r>>
type IntoFuture = Pin<Box<dyn Future<Output = <Authenticate<'r, Client> as IntoFuture>::Output> + Send + Sync + 'r>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'r, C> Freeze for Authenticate<'r, C>
impl<'r, C> !RefUnwindSafe for Authenticate<'r, C>
impl<'r, C> Send for Authenticate<'r, C>
impl<'r, C> Sync for Authenticate<'r, C>
impl<'r, C> Unpin for Authenticate<'r, C>where
C: Unpin,
impl<'r, C> !UnwindSafe for Authenticate<'r, C>
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