Struct aws_sdk_devicefarm::model::Counters [−][src]
#[non_exhaustive]pub struct Counters {
pub total: Option<i32>,
pub passed: Option<i32>,
pub failed: Option<i32>,
pub warned: Option<i32>,
pub errored: Option<i32>,
pub stopped: Option<i32>,
pub skipped: Option<i32>,
}Expand description
Represents entity counters.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.total: Option<i32>The total number of entities.
passed: Option<i32>The number of passed entities.
failed: Option<i32>The number of failed entities.
warned: Option<i32>The number of warned entities.
errored: Option<i32>The number of errored entities.
stopped: Option<i32>The number of stopped entities.
skipped: Option<i32>The number of skipped entities.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Counters
impl UnwindSafe for Counters
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
