pub struct Solution {
pub channels: Vec<ChannelSpec>,
pub routes: Vec<IntentRoute>,
}Expand description
The solver output, describing the channels and per-intent routing.
Fields§
§channels: Vec<ChannelSpec>Channels required for the solution.
routes: Vec<IntentRoute>Routes for each intent.
Trait Implementations§
impl Eq for Solution
impl StructuralPartialEq for Solution
Auto Trait Implementations§
impl Freeze for Solution
impl RefUnwindSafe for Solution
impl Send for Solution
impl Sync for Solution
impl Unpin for Solution
impl UnsafeUnpin for Solution
impl UnwindSafe for Solution
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