pub enum ProposalDecision {
AcceptAll,
AcceptHunk(usize),
RejectHunk(usize),
RejectAll,
}Expand description
The human’s verdict while reviewing a proposal. Per hunk and per proposal, as ARCHITECTURE.md §9.3 requires.
Variants§
Trait Implementations§
Source§impl Clone for ProposalDecision
impl Clone for ProposalDecision
Source§fn clone(&self) -> ProposalDecision
fn clone(&self) -> ProposalDecision
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 ProposalDecision
Source§impl Debug for ProposalDecision
impl Debug for ProposalDecision
impl Eq for ProposalDecision
Source§impl PartialEq for ProposalDecision
impl PartialEq for ProposalDecision
impl StructuralPartialEq for ProposalDecision
Auto Trait Implementations§
impl Freeze for ProposalDecision
impl RefUnwindSafe for ProposalDecision
impl Send for ProposalDecision
impl Sync for ProposalDecision
impl Unpin for ProposalDecision
impl UnsafeUnpin for ProposalDecision
impl UnwindSafe for ProposalDecision
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