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 build_artifacts_size: u64,
}

Statistics about a project.

Fields

The number of commits in the repository.

The size, in bytes, of the total storage required for the project.

The size, in bytes, of the repository.

The size, in bytes, of uploaded LFS files.

The size, in bytes, of uploaded build artifacts.

Trait Implementations

impl Debug for ProjectStatistics
[src]

Formats the value using the given formatter.

impl Clone for ProjectStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ProjectStatistics
[src]