pub enum RevisionView {
Accepted,
Original,
Annotated,
}Expand description
Flat text view policy for tracked revisions.
Variants§
Accepted
Current accepted view: include insertions and move destinations; exclude deletions and move sources.
Original
Original view: include deletions and move sources; exclude insertions and move destinations.
Annotated
Annotated view: keep both sides with compact textual markers.
Trait Implementations§
Source§impl Clone for RevisionView
impl Clone for RevisionView
Source§fn clone(&self) -> RevisionView
fn clone(&self) -> RevisionView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RevisionView
Source§impl Debug for RevisionView
impl Debug for RevisionView
impl Eq for RevisionView
Source§impl PartialEq for RevisionView
impl PartialEq for RevisionView
Source§fn eq(&self, other: &RevisionView) -> bool
fn eq(&self, other: &RevisionView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RevisionView
Auto Trait Implementations§
impl Freeze for RevisionView
impl RefUnwindSafe for RevisionView
impl Send for RevisionView
impl Sync for RevisionView
impl Unpin for RevisionView
impl UnsafeUnpin for RevisionView
impl UnwindSafe for RevisionView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.