pub struct Statistic {
pub private_project_count: Option<i64>,
pub private_repo_count: Option<i64>,
pub public_project_count: Option<i64>,
pub public_repo_count: Option<i64>,
pub total_project_count: Option<i64>,
pub total_repo_count: Option<i64>,
pub total_storage_consumption: Option<i64>,
}Fields§
§private_project_count: Option<i64>The count of the private projects
private_repo_count: Option<i64>The count of the private repositories
public_project_count: Option<i64>The count of the public projects
public_repo_count: Option<i64>The count of the public repositories
total_project_count: Option<i64>The count of the total projects, only be seen by the system admin
total_repo_count: Option<i64>The count of the total repositories, only be seen by the system admin
total_storage_consumption: Option<i64>The total storage consumption of blobs, only be seen by the system admin
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Statistic
impl<'de> Deserialize<'de> for Statistic
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 StructuralPartialEq for Statistic
Auto Trait Implementations§
impl Freeze for Statistic
impl RefUnwindSafe for Statistic
impl Send for Statistic
impl Sync for Statistic
impl Unpin for Statistic
impl UnwindSafe for Statistic
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