pub enum ContentDiff {
Text {
chunks: Vec<ChunkDiff>,
},
Binary,
Empty,
}Variants§
Trait Implementations§
Source§impl Clone for ContentDiff
impl Clone for ContentDiff
Source§fn clone(&self) -> ContentDiff
fn clone(&self) -> ContentDiff
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 moreSource§impl Debug for ContentDiff
impl Debug for ContentDiff
Auto Trait Implementations§
impl Freeze for ContentDiff
impl RefUnwindSafe for ContentDiff
impl Send for ContentDiff
impl Sync for ContentDiff
impl Unpin for ContentDiff
impl UnwindSafe for ContentDiff
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