Struct gitlab::types::ProjectStatistics
[−]
[src]
pub struct ProjectStatistics {
pub commit_count: u64,
pub storage_size: u64,
pub repository_size: u64,
pub lfs_objects_size: u64,
pub job_artifacts_size: u64,
}Statistics about a project.
Fields
commit_count: u64
The number of commits in the repository.
storage_size: u64
The size, in bytes, of the total storage required for the project.
repository_size: u64
The size, in bytes, of the repository.
lfs_objects_size: u64
The size, in bytes, of uploaded LFS files.
job_artifacts_size: u64
The size, in bytes, of uploaded job artifacts.
Trait Implementations
impl Debug for ProjectStatistics[src]
impl Clone for ProjectStatistics[src]
fn clone(&self) -> ProjectStatistics
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more