pub struct Analysis {
pub contributors: Vec<Contributor>,
pub meta: RepoMeta,
}Expand description
The result of analyze: every contributor (bots included — filter on
Contributor::bot if you don’t want them) and repository metadata.
Fields§
§contributors: Vec<Contributor>§meta: RepoMetaAuto Trait Implementations§
impl Freeze for Analysis
impl RefUnwindSafe for Analysis
impl Send for Analysis
impl Sync for Analysis
impl Unpin for Analysis
impl UnsafeUnpin for Analysis
impl UnwindSafe for Analysis
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