pub struct RoutingAttemptReceipt {
pub candidate_id: String,
pub outcome: RoutingAttemptOutcome,
pub error_hash: Option<String>,
}Expand description
One secret-free attempt in exact execution order.
Fields§
§candidate_id: StringID of the candidate this attempt targeted.
outcome: RoutingAttemptOutcomeOutcome of the provider attempt.
error_hash: Option<String>Hash of the provider error, when outcome is not Succeeded.
Trait Implementations§
Source§impl Clone for RoutingAttemptReceipt
impl Clone for RoutingAttemptReceipt
Source§fn clone(&self) -> RoutingAttemptReceipt
fn clone(&self) -> RoutingAttemptReceipt
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 RoutingAttemptReceipt
impl Debug for RoutingAttemptReceipt
Source§impl<'de> Deserialize<'de> for RoutingAttemptReceipt
impl<'de> Deserialize<'de> for RoutingAttemptReceipt
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
impl Eq for RoutingAttemptReceipt
Source§impl PartialEq for RoutingAttemptReceipt
impl PartialEq for RoutingAttemptReceipt
Source§impl Serialize for RoutingAttemptReceipt
impl Serialize for RoutingAttemptReceipt
impl StructuralPartialEq for RoutingAttemptReceipt
Auto Trait Implementations§
impl Freeze for RoutingAttemptReceipt
impl RefUnwindSafe for RoutingAttemptReceipt
impl Send for RoutingAttemptReceipt
impl Sync for RoutingAttemptReceipt
impl Unpin for RoutingAttemptReceipt
impl UnsafeUnpin for RoutingAttemptReceipt
impl UnwindSafe for RoutingAttemptReceipt
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