pub enum ReviewDiff {
Full {
notice: Option<String>,
},
Since {
since: String,
head: String,
},
}Expand description
How much of a task’s work to put in front of the operator.
Variants§
Full
Everything on the branch. A first review carries no notice; a fallback from a delta that could not be built explains itself in one.
Since
Only what the rework added: the revision reviewed last, and the head it is compared against.
Implementations§
Trait Implementations§
Source§impl Clone for ReviewDiff
impl Clone for ReviewDiff
Source§fn clone(&self) -> ReviewDiff
fn clone(&self) -> ReviewDiff
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 moreSource§impl Debug for ReviewDiff
impl Debug for ReviewDiff
impl Eq for ReviewDiff
Source§impl PartialEq for ReviewDiff
impl PartialEq for ReviewDiff
impl StructuralPartialEq for ReviewDiff
Auto Trait Implementations§
impl Freeze for ReviewDiff
impl RefUnwindSafe for ReviewDiff
impl Send for ReviewDiff
impl Sync for ReviewDiff
impl Unpin for ReviewDiff
impl UnsafeUnpin for ReviewDiff
impl UnwindSafe for ReviewDiff
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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.