Struct slurm::SingleJobInfoMessage [] [src]

pub struct SingleJobInfoMessage(_);

Information about a single job.

This type implements Deref to JobInfo and so can be essentially be treated as a JobInfo. Due to how the Slurm library manages memory, this separate type is necessary in some cases.

Methods from Deref<Target = JobInfo>

[src]

Get this job's ID.

[src]

Get the cluster partition on which this job resides.

Trait Implementations

impl Debug for SingleJobInfoMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl UnownedFromSlurmPointer for SingleJobInfoMessage
[src]

[src]

Create an unowned wrapper object from a Slurm pointer.

impl Deref for SingleJobInfoMessage
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl DerefMut for SingleJobInfoMessage
[src]

[src]

Mutably dereferences the value.

Auto Trait Implementations