pub enum ReconnectAttemptFate {
Connected,
Failed,
}Expand description
Typed fate of one real connection attempt.
Variants§
Connected
The binding proved the connection online.
Failed
The real connection attempt failed and parks without timer authority.
Trait Implementations§
Source§impl Clone for ReconnectAttemptFate
impl Clone for ReconnectAttemptFate
Source§fn clone(&self) -> ReconnectAttemptFate
fn clone(&self) -> ReconnectAttemptFate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReconnectAttemptFate
Source§impl Debug for ReconnectAttemptFate
impl Debug for ReconnectAttemptFate
impl Eq for ReconnectAttemptFate
Source§impl PartialEq for ReconnectAttemptFate
impl PartialEq for ReconnectAttemptFate
impl StructuralPartialEq for ReconnectAttemptFate
Auto Trait Implementations§
impl Freeze for ReconnectAttemptFate
impl RefUnwindSafe for ReconnectAttemptFate
impl Send for ReconnectAttemptFate
impl Sync for ReconnectAttemptFate
impl Unpin for ReconnectAttemptFate
impl UnsafeUnpin for ReconnectAttemptFate
impl UnwindSafe for ReconnectAttemptFate
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