pub struct FlowOptimizationSuggestor;Expand description
Routes flow through a directed network at minimum cost (Successive Shortest Paths with Bellman-Ford).
Trait Implementations§
Source§impl Suggestor for FlowOptimizationSuggestor
impl Suggestor for FlowOptimizationSuggestor
Source§fn dependencies(&self) -> &[ContextKey]
fn dependencies(&self) -> &[ContextKey]
Context keys this suggestor reads from. Read more
Source§fn complexity_hint(&self) -> Option<&'static str>
fn complexity_hint(&self) -> Option<&'static str>
Algorithmic complexity of this suggestor’s core computation. Read more
Auto Trait Implementations§
impl Freeze for FlowOptimizationSuggestor
impl RefUnwindSafe for FlowOptimizationSuggestor
impl Send for FlowOptimizationSuggestor
impl Sync for FlowOptimizationSuggestor
impl Unpin for FlowOptimizationSuggestor
impl UnsafeUnpin for FlowOptimizationSuggestor
impl UnwindSafe for FlowOptimizationSuggestor
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