pub struct AttemptEntry {
pub timestamp: u64,
pub event: Option<Value>,
pub capture_files: Vec<PathBuf>,
pub review_files: Vec<PathBuf>,
}Expand description
One chronological point in a phase’s history, with nearby retained evidence attached to the event that produced it.
Fields§
§timestamp: u64§event: Option<Value>§capture_files: Vec<PathBuf>§review_files: Vec<PathBuf>Trait Implementations§
Source§impl Clone for AttemptEntry
impl Clone for AttemptEntry
Source§fn clone(&self) -> AttemptEntry
fn clone(&self) -> AttemptEntry
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 moreAuto Trait Implementations§
impl Freeze for AttemptEntry
impl RefUnwindSafe for AttemptEntry
impl Send for AttemptEntry
impl Sync for AttemptEntry
impl Unpin for AttemptEntry
impl UnsafeUnpin for AttemptEntry
impl UnwindSafe for AttemptEntry
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