pub enum RouteAttemptStatus {
Skipped,
Failed,
Accepted,
}Expand description
Status for one route attempt.
Variants§
Skipped
The target was skipped before any model call.
Failed
The target produced a structural or semantic failure.
Accepted
The target answered and passed every required check.
Trait Implementations§
Source§impl Clone for RouteAttemptStatus
impl Clone for RouteAttemptStatus
Source§fn clone(&self) -> RouteAttemptStatus
fn clone(&self) -> RouteAttemptStatus
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 RouteAttemptStatus
impl Debug for RouteAttemptStatus
impl Eq for RouteAttemptStatus
Source§impl PartialEq for RouteAttemptStatus
impl PartialEq for RouteAttemptStatus
impl StructuralPartialEq for RouteAttemptStatus
Auto Trait Implementations§
impl Freeze for RouteAttemptStatus
impl RefUnwindSafe for RouteAttemptStatus
impl Send for RouteAttemptStatus
impl Sync for RouteAttemptStatus
impl Unpin for RouteAttemptStatus
impl UnsafeUnpin for RouteAttemptStatus
impl UnwindSafe for RouteAttemptStatus
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.