pub struct ProcessData<'a> {
pub request: Option<Arc<ProcessRequest>>,
pub line_number: i64,
pub line: String,
/* private fields */
}Expand description
Various fields related to the process
Fields§
§request: Option<Arc<ProcessRequest>>Request data
line_number: i64Line number from output of the Process’s STDOUT & STDERR
line: StringA single line data from output of the Process’s STDOUT & STDERR
Implementations§
Source§impl ProcessData<'_>
impl ProcessData<'_>
Auto Trait Implementations§
impl<'a> Freeze for ProcessData<'a>
impl<'a> !RefUnwindSafe for ProcessData<'a>
impl<'a> Send for ProcessData<'a>
impl<'a> Sync for ProcessData<'a>
impl<'a> Unpin for ProcessData<'a>
impl<'a> !UnwindSafe for ProcessData<'a>
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