pub struct ProjectStatusCountPayload {
pub count: Option<f64>,
pub private_count: Option<f64>,
pub archived_team_count: Option<f64>,
}Fields§
§count: Option<f64>Total number of projects using this project status.
private_count: Option<f64>Total number of projects using this project status that are not visible to the user because they are in a private team.
archived_team_count: Option<f64>Total number of projects using this project status that are not visible to the user because they are in an archived team.
Trait Implementations§
Source§impl Clone for ProjectStatusCountPayload
impl Clone for ProjectStatusCountPayload
Source§fn clone(&self) -> ProjectStatusCountPayload
fn clone(&self) -> ProjectStatusCountPayload
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 ProjectStatusCountPayload
impl Debug for ProjectStatusCountPayload
Source§impl Default for ProjectStatusCountPayload
impl Default for ProjectStatusCountPayload
Source§fn default() -> ProjectStatusCountPayload
fn default() -> ProjectStatusCountPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectStatusCountPayloadwhere
ProjectStatusCountPayload: Default,
impl<'de> Deserialize<'de> for ProjectStatusCountPayloadwhere
ProjectStatusCountPayload: Default,
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 ProjectStatusCountPayload
impl RefUnwindSafe for ProjectStatusCountPayload
impl Send for ProjectStatusCountPayload
impl Sync for ProjectStatusCountPayload
impl Unpin for ProjectStatusCountPayload
impl UnwindSafe for ProjectStatusCountPayload
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