pub struct ProcessLog(/* private fields */);Expand description
What a program asked a fake process to do, shared between the host and whoever inspects it.
Cloning shares the same record, including the clone already given to a
Process. The record is synchronized because a host is reachable from
every task of a run.
Implementations§
Source§impl ProcessLog
impl ProcessLog
Trait Implementations§
Source§impl Clone for ProcessLog
impl Clone for ProcessLog
Source§fn clone(&self) -> ProcessLog
fn clone(&self) -> ProcessLog
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 ProcessLog
impl Debug for ProcessLog
Source§impl Default for ProcessLog
impl Default for ProcessLog
Source§fn default() -> ProcessLog
fn default() -> ProcessLog
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessLog
impl RefUnwindSafe for ProcessLog
impl Send for ProcessLog
impl Sync for ProcessLog
impl Unpin for ProcessLog
impl UnsafeUnpin for ProcessLog
impl UnwindSafe for ProcessLog
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