pub struct RepositoryAnalysis {
pub has_license: bool,
pub is_stale: bool,
pub is_archived: bool,
pub primary_language: Option<String>,
}Fields§
§has_license: 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§fn eq(&self, other: &RepositoryAnalysis) -> bool
fn eq(&self, other: &RepositoryAnalysis) -> bool
Tests for
self and other values to be equal, and is used by ==.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