pub enum Difference {
None,
Bounds,
Shape,
}
Expand description
The difference detected in some text.
You will obtain a Difference
when you compare
a Paragraph
with some
Text
.
Variants§
None
No difference.
The text can be reused as it is!
Bounds
A bounds difference.
This normally means a relayout is necessary, but the shape of the text can be reused.
Shape
A shape difference.
The contents, alignment, sizes, fonts, or any other essential attributes of the shape of the text have changed. A complete reshape and relayout of the text is necessary.
Trait Implementations§
Source§impl Clone for Difference
impl Clone for Difference
Source§fn clone(&self) -> Difference
fn clone(&self) -> Difference
Returns a copy 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 Difference
impl Debug for Difference
Source§impl PartialEq for Difference
impl PartialEq for Difference
impl Copy for Difference
impl Eq for Difference
impl StructuralPartialEq for Difference
Auto Trait Implementations§
impl Freeze for Difference
impl RefUnwindSafe for Difference
impl Send for Difference
impl Sync for Difference
impl Unpin for Difference
impl UnwindSafe for Difference
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