pub struct RoutedAnswer {
pub answer: Expr,
pub provenance: RouteProvenance,
pub attempts: Vec<RouteAttempt>,
}Expand description
Answer plus route provenance and attempt details.
Fields§
§answer: ExprDecoded answer expression from the accepted BRIDGE reply packet.
provenance: RouteProvenanceProvenance for the accepted answer.
attempts: Vec<RouteAttempt>Ordered attempts made before acceptance.
Trait Implementations§
Source§impl Clone for RoutedAnswer
impl Clone for RoutedAnswer
Source§fn clone(&self) -> RoutedAnswer
fn clone(&self) -> RoutedAnswer
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 RoutedAnswer
impl Debug for RoutedAnswer
impl Eq for RoutedAnswer
Source§impl PartialEq for RoutedAnswer
impl PartialEq for RoutedAnswer
impl StructuralPartialEq for RoutedAnswer
Auto Trait Implementations§
impl Freeze for RoutedAnswer
impl RefUnwindSafe for RoutedAnswer
impl Send for RoutedAnswer
impl Sync for RoutedAnswer
impl Unpin for RoutedAnswer
impl UnsafeUnpin for RoutedAnswer
impl UnwindSafe for RoutedAnswer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.