pub struct ExtractedFileChange {
pub file_path: String,
pub change_type: String,
pub diff_text: Option<String>,
pub content_hash: Option<String>,
}Fields§
§file_path: String§change_type: String§diff_text: Option<String>§content_hash: Option<String>Trait Implementations§
Source§impl Clone for ExtractedFileChange
impl Clone for ExtractedFileChange
Source§fn clone(&self) -> ExtractedFileChange
fn clone(&self) -> ExtractedFileChange
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtractedFileChange
impl RefUnwindSafe for ExtractedFileChange
impl Send for ExtractedFileChange
impl Sync for ExtractedFileChange
impl Unpin for ExtractedFileChange
impl UnsafeUnpin for ExtractedFileChange
impl UnwindSafe for ExtractedFileChange
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