Enum holochain::conductor::manager::TaskOutcome[][src]

pub enum TaskOutcome {
    NewTask(ManagedTaskAdd),
    LogInfo(String),
    MinorError(Box<ManagedTaskError>, String),
    ShutdownConductor(Box<ManagedTaskError>, String),
    StopApps(CellIdBox<ManagedTaskError>, String),
}
Expand description

The outcome of a task that has finished.

Variants

Spawn a new managed task.

Tuple Fields of NewTask

0: ManagedTaskAdd
LogInfo(String)

Log an info trace and take no other action.

Tuple Fields of LogInfo

0: String
MinorError(Box<ManagedTaskError>, String)

Log an error and take no other action.

Tuple Fields of MinorError

0: Box<ManagedTaskError>1: String
ShutdownConductor(Box<ManagedTaskError>, String)

Close the conductor down because this is an unrecoverable error.

Tuple Fields of ShutdownConductor

0: Box<ManagedTaskError>1: String

Either pause or disable all apps which contain the problematic Cell, depending upon the specific error.

Tuple Fields of StopApps

0: CellId1: Box<ManagedTaskError>2: String

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

TODO: once 1.33.0 is the minimum supported compiler version, remove Any::type_id_compat and use StdAny::type_id instead. https://github.com/rust-lang/rust/issues/27745 Read more

The archived version of the pointer metadata for this type.

Converts some archived metadata to the pointer metadata for itself.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

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

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

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

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

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type for metadata in pointers and references to Self.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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

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

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