Struct nomad_client::models::task_group_summary::TaskGroupSummary[][src]

pub struct TaskGroupSummary {
    pub queued: Option<i32>,
    pub complete: Option<i32>,
    pub failed: Option<i32>,
    pub running: Option<i32>,
    pub starting: Option<i32>,
    pub lost: Option<i32>,
}

Fields

queued: Option<i32>complete: Option<i32>failed: Option<i32>running: Option<i32>starting: Option<i32>lost: Option<i32>

Implementations

impl TaskGroupSummary[src]

Trait Implementations

impl Clone for TaskGroupSummary[src]

impl Debug for TaskGroupSummary[src]

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

impl PartialEq<TaskGroupSummary> for TaskGroupSummary[src]

impl Serialize for TaskGroupSummary[src]

impl StructuralPartialEq for TaskGroupSummary[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> Instrument 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.