pub struct ChainExecutionResult {
pub chain_id: String,
pub completed: bool,
pub link_results: Vec<(String, Vec<LinkExecutionResult>)>,
pub total_edits_applied: usize,
pub failure_reason: Option<String>,
}
Fields§
§chain_id: String
§completed: bool
§link_results: Vec<(String, Vec<LinkExecutionResult>)>
§total_edits_applied: usize
§failure_reason: Option<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChainExecutionResult
impl RefUnwindSafe for ChainExecutionResult
impl Send for ChainExecutionResult
impl Sync for ChainExecutionResult
impl Unpin for ChainExecutionResult
impl UnwindSafe for ChainExecutionResult
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