#[non_exhaustive]pub struct FatalExit {
pub status: String,
pub stderr: String,
}Expand description
Final frame the child writes before it tears down on an unrecoverable failure.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.status: StringStringified ExitStatus of the child process.
stderr: StringCaptured stderr tail at fatal-exit time.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FatalExit
impl<'de> Deserialize<'de> for FatalExit
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
impl Eq for FatalExit
impl StructuralPartialEq for FatalExit
Auto Trait Implementations§
impl Freeze for FatalExit
impl RefUnwindSafe for FatalExit
impl Send for FatalExit
impl Sync for FatalExit
impl Unpin for FatalExit
impl UnsafeUnpin for FatalExit
impl UnwindSafe for FatalExit
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