pub struct ScoredCommit {
pub commit: CommitInfo,
pub issues: Vec<Issue>,
}Expand description
A commit paired with its detected issues.
Fields§
§commit: CommitInfo§issues: Vec<Issue>Trait Implementations§
Source§impl Clone for ScoredCommit
impl Clone for ScoredCommit
Source§fn clone(&self) -> ScoredCommit
fn clone(&self) -> ScoredCommit
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 moreAuto Trait Implementations§
impl Freeze for ScoredCommit
impl RefUnwindSafe for ScoredCommit
impl Send for ScoredCommit
impl Sync for ScoredCommit
impl Unpin for ScoredCommit
impl UnsafeUnpin for ScoredCommit
impl UnwindSafe for ScoredCommit
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