pub struct PendingTaskCount {
pub count: i64,
pub truncated: Option<bool>,
}
Expand description
Contains the count of tasks in a task list.
Fields§
§count: i64
The number of tasks in the task list.
truncated: Option<bool>
If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.
Trait Implementations§
Source§impl Clone for PendingTaskCount
impl Clone for PendingTaskCount
Source§fn clone(&self) -> PendingTaskCount
fn clone(&self) -> PendingTaskCount
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 PendingTaskCount
impl Debug for PendingTaskCount
Source§impl Default for PendingTaskCount
impl Default for PendingTaskCount
Source§fn default() -> PendingTaskCount
fn default() -> PendingTaskCount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingTaskCount
impl<'de> Deserialize<'de> for PendingTaskCount
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 PendingTaskCount
impl PartialEq for PendingTaskCount
impl StructuralPartialEq for PendingTaskCount
Auto Trait Implementations§
impl Freeze for PendingTaskCount
impl RefUnwindSafe for PendingTaskCount
impl Send for PendingTaskCount
impl Sync for PendingTaskCount
impl Unpin for PendingTaskCount
impl UnwindSafe for PendingTaskCount
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