pub enum ConnectResult {
Success,
Canceled,
Failed(ConnectFailure),
}
Variants§
Trait Implementations§
Source§impl Debug for ConnectResult
impl Debug for ConnectResult
Source§impl<T: Into<ConnectFailure>> From<T> for ConnectResult
impl<T: Into<ConnectFailure>> From<T> for ConnectResult
Source§impl PartialEq for ConnectResult
impl PartialEq for ConnectResult
impl StructuralPartialEq for ConnectResult
Auto Trait Implementations§
impl Freeze for ConnectResult
impl RefUnwindSafe for ConnectResult
impl Send for ConnectResult
impl Sync for ConnectResult
impl Unpin for ConnectResult
impl UnwindSafe for ConnectResult
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more