pub struct CodeOwnershipEntry {
pub path: String,
pub primary_author: String,
pub primary_commits: usize,
pub total_commits: usize,
pub depth: usize,
pub is_directory: bool,
}Expand description
コードオーナーシップのエントリ
Fields§
§path: Stringパス(ディレクトリまたはファイル)
主要著者
primary_commits: usize主要著者のコミット数
total_commits: usize総コミット数
depth: usize深さ(インデント用)
is_directory: boolディレクトリかどうか
Implementations§
Source§impl CodeOwnershipEntry
impl CodeOwnershipEntry
Sourcepub fn ownership_percentage(&self) -> f64
pub fn ownership_percentage(&self) -> f64
主要著者の割合を計算(パーセント)
Trait Implementations§
Source§impl Clone for CodeOwnershipEntry
impl Clone for CodeOwnershipEntry
Source§fn clone(&self) -> CodeOwnershipEntry
fn clone(&self) -> CodeOwnershipEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 CodeOwnershipEntry
impl RefUnwindSafe for CodeOwnershipEntry
impl Send for CodeOwnershipEntry
impl Sync for CodeOwnershipEntry
impl Unpin for CodeOwnershipEntry
impl UnwindSafe for CodeOwnershipEntry
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more