pub struct ChildProcessState {
pub role: String,
pub isolation: String,
pub context_inheritance: String,
pub join_result: Option<BoundedJson>,
}Fields§
§role: String§isolation: String§context_inheritance: String§join_result: Option<BoundedJson>Present once the child has joined; the task lifecycle alone does not reproduce its output.
Trait Implementations§
Source§impl Clone for ChildProcessState
impl Clone for ChildProcessState
Source§fn clone(&self) -> ChildProcessState
fn clone(&self) -> ChildProcessState
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 ChildProcessState
impl Debug for ChildProcessState
Source§impl<'de> Deserialize<'de> for ChildProcessState
impl<'de> Deserialize<'de> for ChildProcessState
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 PartialEq for ChildProcessState
impl PartialEq for ChildProcessState
Source§impl Serialize for ChildProcessState
impl Serialize for ChildProcessState
impl StructuralPartialEq for ChildProcessState
Auto Trait Implementations§
impl Freeze for ChildProcessState
impl RefUnwindSafe for ChildProcessState
impl Send for ChildProcessState
impl Sync for ChildProcessState
impl Unpin for ChildProcessState
impl UnsafeUnpin for ChildProcessState
impl UnwindSafe for ChildProcessState
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