pub struct JitExperience {
pub author_prior_commits: u32,
pub author_recent_commits: u32,
}Available on crate feature
vcs-git only.Expand description
The author’s prior activity (Kamei EXP/REXP). Higher means more
experience, which lowers the score.
Fields§
Author’s prior commits in the long window, before this commit.
Author’s prior commits in the recent window, before this commit.
Trait Implementations§
Source§impl Clone for JitExperience
impl Clone for JitExperience
Source§fn clone(&self) -> JitExperience
fn clone(&self) -> JitExperience
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 JitExperience
Source§impl Debug for JitExperience
impl Debug for JitExperience
Source§impl Default for JitExperience
impl Default for JitExperience
Source§fn default() -> JitExperience
fn default() -> JitExperience
Returns the “default value” for a type. Read more
impl Eq for JitExperience
Source§impl PartialEq for JitExperience
impl PartialEq for JitExperience
Source§impl Serialize for JitExperience
impl Serialize for JitExperience
impl StructuralPartialEq for JitExperience
Auto Trait Implementations§
impl Freeze for JitExperience
impl RefUnwindSafe for JitExperience
impl Send for JitExperience
impl Sync for JitExperience
impl Unpin for JitExperience
impl UnsafeUnpin for JitExperience
impl UnwindSafe for JitExperience
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.