pub enum SessionAcceptOutcome<Client> {
Established(Client, SessionHandle),
Resumed,
}Variants§
Established(Client, SessionHandle)
Resumed
Auto Trait Implementations§
impl<Client> Freeze for SessionAcceptOutcome<Client>where
Client: Freeze,
impl<Client> RefUnwindSafe for SessionAcceptOutcome<Client>where
Client: RefUnwindSafe,
impl<Client> Send for SessionAcceptOutcome<Client>where
Client: Send,
impl<Client> Sync for SessionAcceptOutcome<Client>where
Client: Sync,
impl<Client> Unpin for SessionAcceptOutcome<Client>where
Client: Unpin,
impl<Client> UnsafeUnpin for SessionAcceptOutcome<Client>where
Client: UnsafeUnpin,
impl<Client> UnwindSafe for SessionAcceptOutcome<Client>where
Client: 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