pub struct GitImportReport {
pub commits_scanned: usize,
pub candidates_found: usize,
pub candidates_persisted: Vec<String>,
pub candidates_duplicate_dropped: usize,
}Fields§
§commits_scanned: usize§candidates_found: usize§candidates_persisted: Vec<String>§candidates_duplicate_dropped: usizeTrait Implementations§
Source§impl Clone for GitImportReport
impl Clone for GitImportReport
Source§fn clone(&self) -> GitImportReport
fn clone(&self) -> GitImportReport
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 moreSource§impl Debug for GitImportReport
impl Debug for GitImportReport
Source§impl Default for GitImportReport
impl Default for GitImportReport
Source§fn default() -> GitImportReport
fn default() -> GitImportReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GitImportReport
impl RefUnwindSafe for GitImportReport
impl Send for GitImportReport
impl Sync for GitImportReport
impl Unpin for GitImportReport
impl UnsafeUnpin for GitImportReport
impl UnwindSafe for GitImportReport
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