Struct slurm::SubmitResponseMessageOwned [] [src]

pub struct SubmitResponseMessageOwned(_);

An owned version of SubmitResponseMessage.

Methods from Deref<Target = SubmitResponseMessage>

[src]

Get the job ID of the new job.

XXX: It looks like it is possible to have a non-zero error_code with a non-zero job ID; I'm not sure in what cases that occurs.

[src]

Get the job-step ID of the new job.

XXX: It looks like it is possible to have a non-zero error_code with a non-zero job ID; I'm not sure in what cases that occurs.

[src]

Get the error code returned by the server.

[src]

Get the "user message" returned by the server.

I think this is arbitrary text that should be shown to the user?

This feature is not available in older versions of Slurm. (TBD: quantify).

Trait Implementations

impl Debug for SubmitResponseMessageOwned
[src]

[src]

Formats the value using the given formatter. Read more

impl Deref for SubmitResponseMessageOwned
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl DerefMut for SubmitResponseMessageOwned
[src]

[src]

Mutably dereferences the value.

impl Drop for SubmitResponseMessageOwned
[src]

[src]

Executes the destructor for this type. Read more

Auto Trait Implementations