pub struct FileEdit {
pub session_id: String,
pub kind: String,
pub ts: Option<String>,
pub snippet: String,
pub matched_path: String,
}Expand description
One recorded edit to a file - the evidence layer behind touched. matched_path
is the absolute stored path the query resolved to.
Fields§
§session_id: String§kind: String§ts: Option<String>§snippet: String§matched_path: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for FileEdit
impl RefUnwindSafe for FileEdit
impl Send for FileEdit
impl Sync for FileEdit
impl Unpin for FileEdit
impl UnsafeUnpin for FileEdit
impl UnwindSafe for FileEdit
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