pub struct Path {
pub target: Target,
pub resolution: Option<DnsResolution>,
pub egress: Egress,
pub probes: ProbeResults,
pub verdict: Verdict,
pub findings: Vec<Finding>,
}Expand description
End-to-end path probe result: target resolution, egress selection, probe outcomes, and the final verdict.
Fields§
§target: TargetThe target that was probed.
resolution: Option<DnsResolution>None when the target was given as an IP literal.
egress: EgressWhich interface and source address carry traffic to the target.
probes: ProbeResultsAll probe results collected for this path.
verdict: VerdictThe overall reachability verdict.
findings: Vec<Finding>Diagnostic findings produced while tracing the path.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Path
impl<'de> Deserialize<'de> for Path
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
Auto Trait Implementations§
impl Freeze for Path
impl RefUnwindSafe for Path
impl Send for Path
impl Sync for Path
impl Unpin for Path
impl UnsafeUnpin for Path
impl UnwindSafe for Path
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