pub struct RouteDecision {
pub tier: ExecutorTier,
pub rule: RuleMatch,
}Expand description
The full resolution of one task class against the table: the tier AND the
rule that decided it. table_tier is the tier-only view for callers
that predate provenance.
Fields§
§tier: ExecutorTier§rule: RuleMatchTrait Implementations§
Source§impl Clone for RouteDecision
impl Clone for RouteDecision
Source§fn clone(&self) -> RouteDecision
fn clone(&self) -> RouteDecision
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 moreimpl Copy for RouteDecision
Source§impl Debug for RouteDecision
impl Debug for RouteDecision
impl Eq for RouteDecision
Source§impl PartialEq for RouteDecision
impl PartialEq for RouteDecision
impl StructuralPartialEq for RouteDecision
Auto Trait Implementations§
impl Freeze for RouteDecision
impl RefUnwindSafe for RouteDecision
impl Send for RouteDecision
impl Sync for RouteDecision
impl Unpin for RouteDecision
impl UnsafeUnpin for RouteDecision
impl UnwindSafe for RouteDecision
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