pub struct ReadyDecisionInput<'a> {
pub merge_relation: &'a str,
pub captured: bool,
pub thread_already_ready: bool,
pub conflict_count: usize,
pub blockers: &'a [String],
}Expand description
Inputs for classifying a ready-command outcome without performing I/O.
Fields§
§merge_relation: &'a str§captured: bool§thread_already_ready: boolWhether the thread is already in repo::ThreadState::Ready.
conflict_count: usize§blockers: &'a [String]Trait Implementations§
Source§impl<'a> Clone for ReadyDecisionInput<'a>
impl<'a> Clone for ReadyDecisionInput<'a>
Source§fn clone(&self) -> ReadyDecisionInput<'a>
fn clone(&self) -> ReadyDecisionInput<'a>
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<'a> Copy for ReadyDecisionInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReadyDecisionInput<'a>
impl<'a> RefUnwindSafe for ReadyDecisionInput<'a>
impl<'a> Send for ReadyDecisionInput<'a>
impl<'a> Sync for ReadyDecisionInput<'a>
impl<'a> Unpin for ReadyDecisionInput<'a>
impl<'a> UnsafeUnpin for ReadyDecisionInput<'a>
impl<'a> UnwindSafe for ReadyDecisionInput<'a>
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