pub struct LeanWorkerExit {
pub success: bool,
pub code: Option<i32>,
pub status: String,
pub diagnostics: String,
}Expand description
Rendered child-process exit information.
Fields§
§success: boolWhether the child process exited successfully.
code: Option<i32>The platform exit code when one is available.
status: StringThe platform-rendered process status.
diagnostics: StringCaptured child diagnostics, if available.
Trait Implementations§
Source§impl Clone for LeanWorkerExit
impl Clone for LeanWorkerExit
Source§fn clone(&self) -> LeanWorkerExit
fn clone(&self) -> LeanWorkerExit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LeanWorkerExit
impl Debug for LeanWorkerExit
Source§impl PartialEq for LeanWorkerExit
impl PartialEq for LeanWorkerExit
Source§fn eq(&self, other: &LeanWorkerExit) -> bool
fn eq(&self, other: &LeanWorkerExit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeanWorkerExit
impl StructuralPartialEq for LeanWorkerExit
Auto Trait Implementations§
impl Freeze for LeanWorkerExit
impl RefUnwindSafe for LeanWorkerExit
impl Send for LeanWorkerExit
impl Sync for LeanWorkerExit
impl Unpin for LeanWorkerExit
impl UnsafeUnpin for LeanWorkerExit
impl UnwindSafe for LeanWorkerExit
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