pub struct RunnerLogEvent {
pub std: StdType,
pub log: VecDeque<String>,
pub id: String,
}
Expand description
The last lines of the command. It is useful when debugging because in case of unexpected error, most of times the command just explains you what happened
Fields§
§std: StdType
The source of the event
log: VecDeque<String>
The last lines
id: String
The id of the command
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunnerLogEvent
impl RefUnwindSafe for RunnerLogEvent
impl Send for RunnerLogEvent
impl Sync for RunnerLogEvent
impl Unpin for RunnerLogEvent
impl UnwindSafe for RunnerLogEvent
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