Enum brane_tsk::spec::JobStatus

source ·
pub enum JobStatus {
Show 19 variants Unknown, Received, Authorized, Denied, AuthorizationFailed(String), Created, CreationFailed(String), Ready, Initialized, InitializationFailed(String), Started, StartingFailed(String), Heartbeat, Completed, CompletionFailed(String), Finished(FullValue), Stopped, DecodingFailed(String), Failed(i32, String, String),
}
Expand description

Defines the possible states a job can have.

Variants§

§

Unknown

No status yet / unknown

§

Received

The job has been received by the job node.

§

Authorized

The job has been authorized by the job’s checker(s).

§

Denied

The job has been denied by the job’s checker(s).

§

AuthorizationFailed(String)

Authorization has failed.

§

Created

The job container has been created.

§

CreationFailed(String)

We failed to create the job container.

§

Ready

The branelet has been booted (first event it sends).

§

Initialized

The branelet node has been initialized; now only to spawn the job itself.

§

InitializationFailed(String)

We failed to initialize branelet.

§

Started

The actual subcall executeable / script has started

§

StartingFailed(String)

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

§

Heartbeat

Occassional message to let the user know the container is alive and running

§

Completed

The package call went successfully from the branelet’s side

§

CompletionFailed(String)

The package call went wrong from the branelet’s side

§

Finished(FullValue)

The container has exited with a zero status code (and returned the given value, which may be Void)

§

Stopped

The container was interrupted by the Job node

§

DecodingFailed(String)

brane-let could not decode the output from the package call

§

Failed(i32, String, String)

The container has exited with a non-zero status code

Implementations§

source§

impl JobStatus

source

pub fn from_status( status: TaskStatus, value: Option<String>, ) -> Result<Self, ExecuteError>

Attempts to parse the given status & value into a JobStatus.

§Arguments
  • status: The ExecuteState that provides the wire status.
  • value: The optional String value that we will parse to values or errors.
§Returns

A new JobStatus instance.

§Errors

This function errors if we failed to parse the string, or it was None when we expected Some.

source

pub fn is_heartbeat(&self) -> bool

Returns whether this status is a heartbeat.

source

pub fn progress_index(&self) -> u32

Converts the JobStatus into some ‘progress index’, which is a number that can be used to determine if some JobStatus logically should be send after another.

§Returns

A number representing the progress index. If it’s higher than that of another JobStatus, this indicates its part of a later ‘step’ in the process.

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 From<&JobStatus> for (TaskStatus, Option<String>)

source§

fn from(value: &JobStatus) -> Self

Converts to this type from the input type.
source§

impl From<&JobStatus> for TaskStatus

source§

fn from(value: &JobStatus) -> Self

Converts to this type from the input type.
source§

impl From<JobStatus> for (TaskStatus, Option<String>)

source§

fn from(value: JobStatus) -> Self

Converts to this type from the input type.
source§

impl From<JobStatus> for TaskStatus

source§

fn from(value: JobStatus) -> Self

Converts to this type from the input type.
source§

impl PartialEq for JobStatus

source§

fn eq(&self, other: &Self) -> 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.

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<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

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<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