Enum brane_shr::jobs::JobStatus

source ·
#[repr(u8)]
pub enum JobStatus {
Show 14 variants Unknown, Created, CreateFailed { err: String, }, Ready, Initialized, InitializeFailed { err: String, }, Started, StartFailed { err: String, }, Completed, CompleteFailed { err: String, }, Finished { res: String, }, Failed { res: String, }, Stopped { signal: String, }, DecodeFailed { err: String, },
}
Expand description

Edited: added comments + synced with new events.

Lists the possible states that a job can have from the brane-drv perspective.

Variants§

§

Unknown

Meta state for undefined states

§

Created

We successfully created a container for the call

§

CreateFailed

We could not create the container to run the call.

Carries

  • err: A string describing why we failed to launch a job.

Fields

§

Ready

The container is ready with setting up the branelet executable (first opportunity for branelet to send events)

§

Initialized

The container has initialized its working directory

§

InitializeFailed

Something went wrong while setting up the working directory

Carries

  • err: A string describing why we failed to intialize a job.

Fields

§

Started

The actual subcall executeable / script has started

§

StartFailed

The subprocess executable did not want to start (calling it failed)

Carries

  • err: A string describing why we failed to start a job.

Fields

§

Completed

The subcall executable has finished without errors - at least, from the branelet’s side, that is

§

CompleteFailed

The subcall executable has finished with errors on the branelet side

Carries

  • err: A string describing why we failed to complete a job.

Fields

§

Finished

The container has exited with a zero status code

Carries

  • res: A JSON-formatted string (hopefully) containing the value of the finished job.

Fields

§

Failed

The container has exited with a non-zero status code

Carries

  • res: A JSON-formatted string (hopefully) containing a code/stdout/stderr triplet of results of the failed job.

Fields

§

Stopped

The container was interrupted by the Job node

Fields

§signal: String
§

DecodeFailed

We could not decode the output from the package

Carries

  • err: A string describing why we failed to decode the job output.

Fields

Implementations§

source§

impl JobStatus

source

pub fn order(&self) -> u32

Converts any of the states to a numeric number representing their ordering.
The earlier the state in a job’s lifecycle, the lower the number.

Returns
The ordering as an unsigned integer.

source

pub fn reached(&self, target: &JobStatus) -> bool

Returns whether the this state is equal to or has surpassed the given state in terms of ordering.
In case they are equal, also requires the specific variants to be the same (not just the ordering).

Arguments

  • target: The target state to check if the job has reached.

Returns
True if this state’s ordering is equal to or higher than the target’s ordering.

Trait Implementations§

source§

impl Clone for JobStatus

source§

fn clone(&self) -> JobStatus

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for JobStatus

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<&JobStatus> for JobStatus

source§

fn eq(&self, other: &&JobStatus) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialEq for JobStatus

source§

fn eq(&self, other: &JobStatus) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for JobStatus

source§

impl StructuralPartialEq for JobStatus

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromRef<T> for T
where T: Clone,

source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T