pub struct ClientSession<C: Connection> { /* private fields */ }Expand description
Client session wrapping a transport Connection.
C is the concrete connection type supplied by the active
Transport backend.
Implementations§
Source§impl<C: Connection> ClientSession<C>
impl<C: Connection> ClientSession<C>
Auto Trait Implementations§
impl<C> Freeze for ClientSession<C>where
C: Freeze,
impl<C> RefUnwindSafe for ClientSession<C>where
C: RefUnwindSafe,
impl<C> Send for ClientSession<C>
impl<C> Sync for ClientSession<C>where
C: Sync,
impl<C> Unpin for ClientSession<C>where
C: Unpin,
impl<C> UnsafeUnpin for ClientSession<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for ClientSession<C>where
C: 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