[][src]Struct camunda_client::models::activity_statistics_result_dto::ActivityStatisticsResultDto

pub struct ActivityStatisticsResultDto {
    pub id: Option<String>,
    pub instances: Option<i32>,
    pub failed_jobs: Option<i32>,
    pub incidents: Option<Vec<IncidentStatisticsResultDto>>,
}

Fields

id: Option<String>

The id of the activity the results are aggregated for.

instances: Option<i32>

The total number of running process instances of this activity.

failed_jobs: Option<i32>

The total number of failed jobs for the running instances. Note: Will be 0 (not null), if failed jobs were excluded.

incidents: Option<Vec<IncidentStatisticsResultDto>>

Each item in the resulting array is an object which contains incidentType and incidentCount. Note: Will be an empty array, if incidents or incidentsForType were excluded. Furthermore, the array will be also empty if no incidents were found.

Implementations

impl ActivityStatisticsResultDto[src]

Trait Implementations

impl Clone for ActivityStatisticsResultDto[src]

impl Debug for ActivityStatisticsResultDto[src]

impl<'de> Deserialize<'de> for ActivityStatisticsResultDto[src]

impl PartialEq<ActivityStatisticsResultDto> for ActivityStatisticsResultDto[src]

impl Serialize for ActivityStatisticsResultDto[src]

impl StructuralPartialEq for ActivityStatisticsResultDto[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err