pub enum SetupFailure {
Failed(SetupFailed),
Authenticate(SetupAuthenticate),
}Expand description
The setup for the connection failed.
Variants§
Failed(SetupFailed)
Authenticate(SetupAuthenticate)
Trait Implementations§
Source§impl Clone for SetupFailure
impl Clone for SetupFailure
Source§fn clone(&self) -> SetupFailure
fn clone(&self) -> SetupFailure
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SetupFailure
impl RefUnwindSafe for SetupFailure
impl Send for SetupFailure
impl Sync for SetupFailure
impl Unpin for SetupFailure
impl UnwindSafe for SetupFailure
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