pub struct StagesSummary {
pub application_id: Option<String>,
pub num_active_stages: Option<i32>,
pub num_completed_stages: Option<i32>,
pub num_failed_stages: Option<i32>,
pub num_pending_stages: Option<i32>,
pub num_skipped_stages: Option<i32>,
}Expand description
Data related to Stages page summary
This type is not used in any activity, and only used as part of another schema.
Fields§
§application_id: Option<String>no description provided
num_active_stages: Option<i32>no description provided
num_completed_stages: Option<i32>no description provided
num_failed_stages: Option<i32>no description provided
num_pending_stages: Option<i32>no description provided
num_skipped_stages: Option<i32>no description provided
Trait Implementations§
Source§impl Clone for StagesSummary
impl Clone for StagesSummary
Source§fn clone(&self) -> StagesSummary
fn clone(&self) -> StagesSummary
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 StagesSummary
impl Debug for StagesSummary
Source§impl Default for StagesSummary
impl Default for StagesSummary
Source§fn default() -> StagesSummary
fn default() -> StagesSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StagesSummary
impl<'de> Deserialize<'de> for StagesSummary
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 Serialize for StagesSummary
impl Serialize for StagesSummary
impl Part for StagesSummary
Auto Trait Implementations§
impl Freeze for StagesSummary
impl RefUnwindSafe for StagesSummary
impl Send for StagesSummary
impl Sync for StagesSummary
impl Unpin for StagesSummary
impl UnwindSafe for StagesSummary
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