pub struct AttemptRecord {
pub call_id: String,
pub outcome: ActionOutcomeKind,
pub error_class: Option<ErrorClass>,
pub execution_mode: Option<ExecutionMode>,
pub fallback_reason: Option<CoordinateFallbackReason>,
pub chain_index: Option<u32>,
pub channel: Option<ActChannel>,
pub action_name: Option<ActionName>,
}Expand description
One attempt of an action step (spine §6.6): every dispatch, successful or not, leaves one record keyed by its WAL callId.
Fields§
§call_id: StringThe caller-generated action id (matches the actionIntent WAL entry).
outcome: ActionOutcomeKindFour-way terminal discriminant.
error_class: Option<ErrorClass>Runner-side error classification, for non-succeeded outcomes.
execution_mode: Option<ExecutionMode>The execution mode the provider reported.
fallback_reason: Option<CoordinateFallbackReason>Fallback reason when executionMode is coordinateFallback.
chain_index: Option<u32>1-based binding.attempts position of the dispatch (2026-07-18
incorporation, item ② — carried from the actionIntent event;
absent on pre-incorporation ledgers).
channel: Option<ActChannel>The dispatched attempt’s locating channel.
action_name: Option<ActionName>The dispatched attempt’s provider-native action name.
Trait Implementations§
Source§impl Clone for AttemptRecord
impl Clone for AttemptRecord
Source§fn clone(&self) -> AttemptRecord
fn clone(&self) -> AttemptRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttemptRecord
impl Debug for AttemptRecord
Source§impl<'de> Deserialize<'de> for AttemptRecord
impl<'de> Deserialize<'de> for AttemptRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for AttemptRecord
impl JsonSchema for AttemptRecord
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for AttemptRecord
impl PartialEq for AttemptRecord
Source§impl Serialize for AttemptRecord
impl Serialize for AttemptRecord
impl StructuralPartialEq for AttemptRecord
Auto Trait Implementations§
impl Freeze for AttemptRecord
impl RefUnwindSafe for AttemptRecord
impl Send for AttemptRecord
impl Sync for AttemptRecord
impl Unpin for AttemptRecord
impl UnsafeUnpin for AttemptRecord
impl UnwindSafe for AttemptRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more