pub struct WriteResult {
pub path: PathBuf,
pub original_content: String,
pub modified_content: String,
pub changes: Vec<ChangeDescription>,
}Expand description
Result of a write operation on a single file.
Fields§
§path: PathBuf§original_content: String§modified_content: String§changes: Vec<ChangeDescription>Auto Trait Implementations§
impl Freeze for WriteResult
impl RefUnwindSafe for WriteResult
impl Send for WriteResult
impl Sync for WriteResult
impl Unpin for WriteResult
impl UnsafeUnpin for WriteResult
impl UnwindSafe for WriteResult
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