pub struct ProjectMetadataSummary {
pub total_file_count: u64,
pub source_file_count: u64,
pub markers: Vec<String>,
pub languages: Vec<ProjectLanguageStat>,
}Fields§
§total_file_count: u64§source_file_count: u64§markers: Vec<String>§languages: Vec<ProjectLanguageStat>Trait Implementations§
Source§impl Clone for ProjectMetadataSummary
impl Clone for ProjectMetadataSummary
Source§fn clone(&self) -> ProjectMetadataSummary
fn clone(&self) -> ProjectMetadataSummary
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 moreSource§impl Debug for ProjectMetadataSummary
impl Debug for ProjectMetadataSummary
Source§impl<'de> Deserialize<'de> for ProjectMetadataSummary
impl<'de> Deserialize<'de> for ProjectMetadataSummary
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
Auto Trait Implementations§
impl Freeze for ProjectMetadataSummary
impl RefUnwindSafe for ProjectMetadataSummary
impl Send for ProjectMetadataSummary
impl Sync for ProjectMetadataSummary
impl Unpin for ProjectMetadataSummary
impl UnsafeUnpin for ProjectMetadataSummary
impl UnwindSafe for ProjectMetadataSummary
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