[][src]Struct expjobserver::protocol::AddMatrixRequest

pub struct AddMatrixRequest {
    pub vars: HashMap<String, MatrixVarValues>,
    pub cmd: String,
    pub class: String,
    pub repeat: u64,
    pub timeout: u64,
    pub cp_resultsopt: Option<CpResultsopt>,
}

Start a matrix with the given variables and command template.

Fields

vars: HashMap<String, MatrixVarValues>

The variables and their values, which we take the Cartesian Product over.

cmd: String

The command of the job.

The command may use any existing variables known to the server and variables from the set above.

class: String

The class of machine allowed to run this job.

repeat: u64

The number of times to run each task.

timeout: u64

The number of minutes for a timeout, or 0 if none.

cp_resultsopt: Option<CpResultsopt>

The location to copy results, if any.

Trait Implementations

impl Clone for AddMatrixRequest[src]

impl Debug for AddMatrixRequest[src]

impl Default for AddMatrixRequest[src]

impl Message for AddMatrixRequest[src]

impl PartialEq<AddMatrixRequest> for AddMatrixRequest[src]

impl StructuralPartialEq for AddMatrixRequest[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