pub struct ConsoleOutputEvent {
pub pid: u32,
pub instance_name: String,
pub stream: ConsoleStream,
pub line: String,
pub timestamp: SystemTime,
}Expand description
Event emitted for each line of console output.
Fields§
§pid: u32§instance_name: String§stream: ConsoleStream§line: String§timestamp: SystemTimeTrait Implementations§
Source§impl Clone for ConsoleOutputEvent
impl Clone for ConsoleOutputEvent
Source§fn clone(&self) -> ConsoleOutputEvent
fn clone(&self) -> ConsoleOutputEvent
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 ConsoleOutputEvent
impl Debug for ConsoleOutputEvent
Source§impl<'de> Deserialize<'de> for ConsoleOutputEvent
impl<'de> Deserialize<'de> for ConsoleOutputEvent
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
Auto Trait Implementations§
impl Freeze for ConsoleOutputEvent
impl RefUnwindSafe for ConsoleOutputEvent
impl Send for ConsoleOutputEvent
impl Sync for ConsoleOutputEvent
impl Unpin for ConsoleOutputEvent
impl UnsafeUnpin for ConsoleOutputEvent
impl UnwindSafe for ConsoleOutputEvent
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