pub enum ForkErrorKind {
InternalError,
ResourceConstraint,
}
Variants§
Trait Implementations§
Source§impl Clone for ForkErrorKind
impl Clone for ForkErrorKind
Source§fn clone(&self) -> ForkErrorKind
fn clone(&self) -> ForkErrorKind
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 ForkErrorKind
impl Debug for ForkErrorKind
Source§impl<'de> Deserialize<'de> for ForkErrorKind
impl<'de> Deserialize<'de> for ForkErrorKind
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 ForkErrorKind
impl Display for ForkErrorKind
Source§impl Error for ForkErrorKind
impl Error for ForkErrorKind
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<ForkErrorKind> for ForkErrorKind
impl HasErrorKind<ForkErrorKind> for ForkErrorKind
Source§impl Hash for ForkErrorKind
impl Hash for ForkErrorKind
Source§impl Ord for ForkErrorKind
impl Ord for ForkErrorKind
Source§fn cmp(&self, other: &ForkErrorKind) -> Ordering
fn cmp(&self, other: &ForkErrorKind) -> 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 ForkErrorKind
impl PartialEq for ForkErrorKind
Source§impl PartialOrd for ForkErrorKind
impl PartialOrd for ForkErrorKind
Source§impl Serialize for ForkErrorKind
impl Serialize for ForkErrorKind
impl Copy for ForkErrorKind
impl Eq for ForkErrorKind
impl StructuralPartialEq for ForkErrorKind
Auto Trait Implementations§
impl Freeze for ForkErrorKind
impl RefUnwindSafe for ForkErrorKind
impl Send for ForkErrorKind
impl Sync for ForkErrorKind
impl Unpin for ForkErrorKind
impl UnwindSafe for ForkErrorKind
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