pub struct SecurityTaskMetricsResponseModel {
pub completed_tasks: Option<i32>,
pub total_tasks: Option<i32>,
}
Fields§
§completed_tasks: Option<i32>
Number of tasks that have been completed in the organization.
total_tasks: Option<i32>
Total number of tasks in the organization, regardless of their status.
Implementations§
Trait Implementations§
Source§impl Clone for SecurityTaskMetricsResponseModel
impl Clone for SecurityTaskMetricsResponseModel
Source§fn clone(&self) -> SecurityTaskMetricsResponseModel
fn clone(&self) -> SecurityTaskMetricsResponseModel
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 Default for SecurityTaskMetricsResponseModel
impl Default for SecurityTaskMetricsResponseModel
Source§fn default() -> SecurityTaskMetricsResponseModel
fn default() -> SecurityTaskMetricsResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityTaskMetricsResponseModel
impl<'de> Deserialize<'de> for SecurityTaskMetricsResponseModel
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 SecurityTaskMetricsResponseModel
impl PartialEq for SecurityTaskMetricsResponseModel
Source§fn eq(&self, other: &SecurityTaskMetricsResponseModel) -> bool
fn eq(&self, other: &SecurityTaskMetricsResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SecurityTaskMetricsResponseModel
Auto Trait Implementations§
impl Freeze for SecurityTaskMetricsResponseModel
impl RefUnwindSafe for SecurityTaskMetricsResponseModel
impl Send for SecurityTaskMetricsResponseModel
impl Sync for SecurityTaskMetricsResponseModel
impl Unpin for SecurityTaskMetricsResponseModel
impl UnwindSafe for SecurityTaskMetricsResponseModel
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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