[][src]Struct expjobserver::protocol::MatrixStatusResp

pub struct MatrixStatusResp {
    pub cmd: String,
    pub class: String,
    pub id: u64,
    pub jobs: Vec<u64>,
    pub variables: HashMap<String, MatrixVarValues>,
    pub cp_resultsopt: Option<CpResultsopt>,
}

Succeeded. The status of a matrix.

Fields

cmd: String

The command template.

class: String

The class of machine allowed to run this job.

id: u64

The matrix ID

jobs: Vec<u64>

The job IDs that comprise the matrix.

variables: HashMap<String, MatrixVarValues>

The variables in the matrix

cp_resultsopt: Option<CpResultsopt>

The location to copy results, if any.

Trait Implementations

impl Clone for MatrixStatusResp[src]

impl Debug for MatrixStatusResp[src]

impl Default for MatrixStatusResp[src]

impl Message for MatrixStatusResp[src]

impl PartialEq<MatrixStatusResp> for MatrixStatusResp[src]

impl StructuralPartialEq for MatrixStatusResp[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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

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> UnsafeAny for T where
    T: Any