pub struct Multi {
    pub jobs: Vec<Arc<Single>>,
    pub dimens: Dimensions,
    /* private fields */
}
Expand description

Represents a job which consists of multiple sub jobs. All of these jobs must be performed or none of them. Order can be controlled via specific dimension value.

Fields

jobs: Vec<Arc<Single>>

A list of jobs which must be performed.

dimens: Dimensions

Dimensions which contains extra work requirements.

Implementations

Creates a new multi job from given ‘dimens’ and jobs assuming that jobs has to be inserted in order they specified.

Creates a new multi job from given ‘dimens’ and jobs using permutator to control insertion order.

Returns all sub-jobs permutations.

Validates given set of permutations.

Returns parent multi job for given sub-job.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.