#[non_exhaustive]pub struct Parent {
pub first_child_exit_code: i32,
}
Expand description
Parent process execution outcome.
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.first_child_exit_code: i32
Trait Implementations§
source§impl Ord for Parent
impl Ord for Parent
source§impl PartialEq<Parent> for Parent
impl PartialEq<Parent> for Parent
source§impl PartialOrd<Parent> for Parent
impl PartialOrd<Parent> for Parent
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Parent
impl StructuralEq for Parent
impl StructuralPartialEq for Parent
Auto Trait Implementations§
impl RefUnwindSafe for Parent
impl Send for Parent
impl Sync for Parent
impl Unpin for Parent
impl UnwindSafe for Parent
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