pub enum StartErrorKind {
Spawn(SpawnErrorKind),
Exited,
Timeout,
InternalError,
}Variants§
Trait Implementations§
Source§impl Clone for StartErrorKind
impl Clone for StartErrorKind
Source§fn clone(&self) -> StartErrorKind
fn clone(&self) -> StartErrorKind
Returns a copy 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 moreSource§impl Debug for StartErrorKind
impl Debug for StartErrorKind
Source§impl Display for StartErrorKind
impl Display for StartErrorKind
Source§impl Error for StartErrorKind
impl Error for StartErrorKind
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl HasErrorKind<StartErrorKind> for StartErrorKind
impl HasErrorKind<StartErrorKind> for StartErrorKind
Source§impl Hash for StartErrorKind
impl Hash for StartErrorKind
Source§impl Ord for StartErrorKind
impl Ord for StartErrorKind
Source§fn cmp(&self, other: &StartErrorKind) -> Ordering
fn cmp(&self, other: &StartErrorKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StartErrorKind
impl PartialEq for StartErrorKind
Source§impl PartialOrd for StartErrorKind
impl PartialOrd for StartErrorKind
Source§impl<___InspectorStartErrorKind, ___AdjusterStartErrorKind> Traversable<___InspectorStartErrorKind, ___AdjusterStartErrorKind> for StartErrorKindwhere
SpawnErrorKind: Traversable<___InspectorStartErrorKind, ___AdjusterStartErrorKind>,
impl<___InspectorStartErrorKind, ___AdjusterStartErrorKind> Traversable<___InspectorStartErrorKind, ___AdjusterStartErrorKind> for StartErrorKindwhere
SpawnErrorKind: Traversable<___InspectorStartErrorKind, ___AdjusterStartErrorKind>,
type InspectError = Box<dyn Error + Sync + Send>
type AdjustError = Box<dyn Error + Sync + Send>
fn adjust( &mut self, visitor: &mut ___AdjusterStartErrorKind, ) -> Result<(), Self::AdjustError>
fn inspect( &self, visitor: &mut ___InspectorStartErrorKind, ) -> Result<(), Self::InspectError>
impl Copy for StartErrorKind
impl Eq for StartErrorKind
impl StructuralPartialEq for StartErrorKind
Auto Trait Implementations§
impl Freeze for StartErrorKind
impl RefUnwindSafe for StartErrorKind
impl Send for StartErrorKind
impl Sync for StartErrorKind
impl Unpin for StartErrorKind
impl UnwindSafe for StartErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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