pub struct TaskCountResponse {
pub num_completed_milestones: i64,
pub num_completed_tasks: i64,
pub num_incomplete_milestones: i64,
pub num_incomplete_tasks: i64,
pub num_milestones: i64,
pub num_tasks: i64,
}Expand description
A response object returned from the task count endpoint.
Fields§
§num_completed_milestones: i64The number of completed milestones in a project.
num_completed_tasks: i64The number of completed tasks in a project.
num_incomplete_milestones: i64The number of incomplete milestones in a project.
num_incomplete_tasks: i64The number of incomplete tasks in a project.
num_milestones: i64The number of milestones in a project.
num_tasks: i64The number of tasks in a project.
Trait Implementations§
Source§impl Clone for TaskCountResponse
impl Clone for TaskCountResponse
Source§fn clone(&self) -> TaskCountResponse
fn clone(&self) -> TaskCountResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TaskCountResponse
impl Debug for TaskCountResponse
Source§impl Default for TaskCountResponse
impl Default for TaskCountResponse
Source§fn default() -> TaskCountResponse
fn default() -> TaskCountResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskCountResponse
impl<'de> Deserialize<'de> for TaskCountResponse
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 Display for TaskCountResponse
impl Display for TaskCountResponse
Auto Trait Implementations§
impl Freeze for TaskCountResponse
impl RefUnwindSafe for TaskCountResponse
impl Send for TaskCountResponse
impl Sync for TaskCountResponse
impl Unpin for TaskCountResponse
impl UnsafeUnpin for TaskCountResponse
impl UnwindSafe for TaskCountResponse
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