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 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 moreSource§impl Debug for StartErrorKind
impl Debug for StartErrorKind
Source§impl<'de> Deserialize<'de> for StartErrorKind
impl<'de> Deserialize<'de> for StartErrorKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 Serialize for StartErrorKind
impl Serialize for StartErrorKind
impl Copy for StartErrorKind
impl Eq for StartErrorKind
impl Message 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