pub struct FileHistory {
pub path: String,
pub sessions: Vec<SessionEvidence>,
}Expand description
A file’s full evidence chain - the sessions that edited it, newest first, each carrying its own edits. What the file-history page renders.
Fields§
§path: String§sessions: Vec<SessionEvidence>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileHistory
impl RefUnwindSafe for FileHistory
impl Send for FileHistory
impl Sync for FileHistory
impl Unpin for FileHistory
impl UnsafeUnpin for FileHistory
impl UnwindSafe for FileHistory
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