pub struct FinishBlockOptions<'a> {
pub session_id: &'a str,
pub timestamp: &'a str,
pub exit_code: i32,
pub log_path: &'a str,
pub duration_ms: Option<f64>,
pub result_message: Option<&'a str>,
pub extra_lines: Option<Vec<&'a str>>,
pub style: Option<&'a str>,
pub width: Option<usize>,
}Expand description
Options for creating a finish block
Fields§
§session_id: &'a str§timestamp: &'a str§exit_code: i32§log_path: &'a str§duration_ms: Option<f64>§result_message: Option<&'a str>§extra_lines: Option<Vec<&'a str>>§style: Option<&'a str>§width: Option<usize>Auto Trait Implementations§
impl<'a> Freeze for FinishBlockOptions<'a>
impl<'a> RefUnwindSafe for FinishBlockOptions<'a>
impl<'a> Send for FinishBlockOptions<'a>
impl<'a> Sync for FinishBlockOptions<'a>
impl<'a> Unpin for FinishBlockOptions<'a>
impl<'a> UnsafeUnpin for FinishBlockOptions<'a>
impl<'a> UnwindSafe for FinishBlockOptions<'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