pub struct TrackRecord {
pub original_cmd: String,
pub lowfat_cmd: String,
pub raw: String,
pub filtered: String,
pub exec_time_ms: u64,
pub project_path: String,
}Expand description
A single tracked command execution.
Fields§
§original_cmd: String§lowfat_cmd: String§raw: String§filtered: String§exec_time_ms: u64§project_path: StringAuto Trait Implementations§
impl Freeze for TrackRecord
impl RefUnwindSafe for TrackRecord
impl Send for TrackRecord
impl Sync for TrackRecord
impl Unpin for TrackRecord
impl UnsafeUnpin for TrackRecord
impl UnwindSafe for TrackRecord
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