Struct process_events_streaming::ProcessData
source · pub struct ProcessData<'a> {
pub request_id: u32,
pub pids: Vec<u32>,
pub line_number: i64,
pub line: String,
/* private fields */
}Expand description
Various fields related to the process
Fields
request_id: u32A unique request-id / session-id
pids: Vec<u32>List of child pids
line_number: i64Process’s STDOUT & STDERR output’s line number
line: StringProcess’s STDOUT & STDERR output’s line
Implementations
sourceimpl ProcessData<'_>
impl ProcessData<'_>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more