pub struct ConstrainedPathResult {
pub required_procedures: Vec<String>,
pub total_transitions: usize,
pub paths: ShortestPathReport,
}Expand description
Output of a constrained-path analysis.
Fields§
§required_procedures: Vec<String>The full set of required procedure ids (must-visit + transitive preconditions), sorted for deterministic output.
total_transitions: usizeTotal transitions across all required-procedure paths.
paths: ShortestPathReportShortest-path report filtered to only the required procedures.
Trait Implementations§
Source§impl Clone for ConstrainedPathResult
impl Clone for ConstrainedPathResult
Source§fn clone(&self) -> ConstrainedPathResult
fn clone(&self) -> ConstrainedPathResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ConstrainedPathResult
impl Debug for ConstrainedPathResult
Auto Trait Implementations§
impl Freeze for ConstrainedPathResult
impl RefUnwindSafe for ConstrainedPathResult
impl Send for ConstrainedPathResult
impl Sync for ConstrainedPathResult
impl Unpin for ConstrainedPathResult
impl UnsafeUnpin for ConstrainedPathResult
impl UnwindSafe for ConstrainedPathResult
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