Struct strymon_model::Job [] [src]

pub struct Job {
    pub id: JobId,
    pub name: Option<String>,
    pub program: JobProgram,
    pub workers: usize,
    pub executors: Vec<ExecutorId>,
    pub start_time: u64,
}

The meta-data of a submitted and running job.

Fields

A unique identifier for this job.

A human-readable description of the job.

Information about the job executable.

The total amount of workers.

A list of executors currently executing this job.

The Unix timestamp (at the coordinator) of the submission time.

Trait Implementations

impl Clone for Job
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Job
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Job
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Job
[src]

impl Abomonation for Job
[src]

[src]

Write any additional information about &self beyond its binary representation. Read more

[src]

Reports the number of further bytes required to entomb self.

[src]

Recover any information for &mut self not evident from its binary representation. Read more

impl TypeName for Job
[src]

[src]

Formats the fully qualified type name using the given formatter.

Returns the canoncial, concrete name of a type as a string. # Examples Read more

Returns the canoncial type of a value as a string. # Examples Read more