pub struct RoutingTrace {
pub stages: Vec<StageDecision>,
pub terminal_decision: Option<TerminalDecision>,
}Expand description
Complete routing trace for a request through all decision stages.
Fields§
§stages: Vec<StageDecision>Sequence of stage decisions made during routing.
terminal_decision: Option<TerminalDecision>Final terminal routing decision.
Trait Implementations§
Source§impl Clone for RoutingTrace
impl Clone for RoutingTrace
Source§fn clone(&self) -> RoutingTrace
fn clone(&self) -> RoutingTrace
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 RoutingTrace
impl Debug for RoutingTrace
Source§impl Default for RoutingTrace
impl Default for RoutingTrace
Source§fn default() -> RoutingTrace
fn default() -> RoutingTrace
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoutingTrace
impl<'de> Deserialize<'de> for RoutingTrace
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 RoutingTrace
Source§impl PartialEq for RoutingTrace
impl PartialEq for RoutingTrace
Source§fn eq(&self, other: &RoutingTrace) -> bool
fn eq(&self, other: &RoutingTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RoutingTrace
impl Serialize for RoutingTrace
impl StructuralPartialEq for RoutingTrace
Auto Trait Implementations§
impl Freeze for RoutingTrace
impl RefUnwindSafe for RoutingTrace
impl Send for RoutingTrace
impl Sync for RoutingTrace
impl Unpin for RoutingTrace
impl UnsafeUnpin for RoutingTrace
impl UnwindSafe for RoutingTrace
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