pub struct AppliedFile {
pub new_contents: String,
pub fuzzy: bool,
}Expand description
The result of applying chunks: the new file text and whether any chunk had to be located fuzzily (whitespace/Unicode-normalized rather than byte-exact).
Fields§
§new_contents: String§fuzzy: boolAuto Trait Implementations§
impl Freeze for AppliedFile
impl RefUnwindSafe for AppliedFile
impl Send for AppliedFile
impl Sync for AppliedFile
impl Unpin for AppliedFile
impl UnsafeUnpin for AppliedFile
impl UnwindSafe for AppliedFile
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