pub struct RepositoryAnalysis {Show 14 fields
pub inspection_succeeded: bool,
pub has_readme: bool,
pub has_license: bool,
pub has_tests: bool,
pub has_ci: bool,
pub has_docs: bool,
pub has_examples: bool,
pub has_package_manifest: bool,
pub has_reproducibility_scripts: bool,
pub has_benchmarks: bool,
pub is_notebook_only: bool,
pub is_stale: bool,
pub is_archived: bool,
pub primary_language: Option<String>,
}Fields§
§inspection_succeeded: bool§has_readme: bool§has_license: bool§has_tests: bool§has_ci: bool§has_docs: bool§has_examples: bool§has_package_manifest: bool§has_reproducibility_scripts: bool§has_benchmarks: bool§is_notebook_only: bool§is_stale: bool§is_archived: bool§primary_language: Option<String>Trait Implementations§
Source§impl Clone for RepositoryAnalysis
impl Clone for RepositoryAnalysis
Source§fn clone(&self) -> RepositoryAnalysis
fn clone(&self) -> RepositoryAnalysis
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 RepositoryAnalysis
impl Debug for RepositoryAnalysis
Source§impl<'de> Deserialize<'de> for RepositoryAnalysis
impl<'de> Deserialize<'de> for RepositoryAnalysis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RepositoryAnalysis
Source§impl PartialEq for RepositoryAnalysis
impl PartialEq for RepositoryAnalysis
Source§impl Serialize for RepositoryAnalysis
impl Serialize for RepositoryAnalysis
impl StructuralPartialEq for RepositoryAnalysis
Auto Trait Implementations§
impl Freeze for RepositoryAnalysis
impl RefUnwindSafe for RepositoryAnalysis
impl Send for RepositoryAnalysis
impl Sync for RepositoryAnalysis
impl Unpin for RepositoryAnalysis
impl UnsafeUnpin for RepositoryAnalysis
impl UnwindSafe for RepositoryAnalysis
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