pub struct ProjectSummary {
pub repo_count: Option<i32>,
pub project_admin_count: Option<i32>,
pub maintainer_count: Option<i32>,
pub developer_count: Option<i32>,
pub guest_count: Option<i32>,
pub limited_guest_count: Option<i32>,
pub quota: Option<Box<ProjectSummaryQuota>>,
pub registry: Option<Box<Registry>>,
}Fields§
§repo_count: Option<i32>The number of the repositories under this project.
project_admin_count: Option<i32>The total number of project admin members.
maintainer_count: Option<i32>The total number of maintainer members.
developer_count: Option<i32>The total number of developer members.
guest_count: Option<i32>The total number of guest members.
limited_guest_count: Option<i32>The total number of limited guest members.
quota: Option<Box<ProjectSummaryQuota>>§registry: Option<Box<Registry>>Implementations§
Source§impl ProjectSummary
impl ProjectSummary
pub fn new() -> ProjectSummary
Trait Implementations§
Source§impl Clone for ProjectSummary
impl Clone for ProjectSummary
Source§fn clone(&self) -> ProjectSummary
fn clone(&self) -> ProjectSummary
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 ProjectSummary
impl Debug for ProjectSummary
Source§impl Default for ProjectSummary
impl Default for ProjectSummary
Source§fn default() -> ProjectSummary
fn default() -> ProjectSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSummary
impl<'de> Deserialize<'de> for ProjectSummary
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
Source§impl PartialEq for ProjectSummary
impl PartialEq for ProjectSummary
Source§impl Serialize for ProjectSummary
impl Serialize for ProjectSummary
impl StructuralPartialEq for ProjectSummary
Auto Trait Implementations§
impl Freeze for ProjectSummary
impl RefUnwindSafe for ProjectSummary
impl Send for ProjectSummary
impl Sync for ProjectSummary
impl Unpin for ProjectSummary
impl UnwindSafe for ProjectSummary
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