pub struct FlowRoute {
pub producer: EndpointId,
pub consumer: EndpointId,
pub channel: usize,
}Expand description
A flow for a single intent mapped to a channel in the solution.
Fields§
§producer: EndpointIdProducer endpoint for the flow.
consumer: EndpointIdConsumer endpoint for the flow.
channel: usizeIndex into the solution channel list.
Trait Implementations§
impl Eq for FlowRoute
impl StructuralPartialEq for FlowRoute
Auto Trait Implementations§
impl Freeze for FlowRoute
impl RefUnwindSafe for FlowRoute
impl Send for FlowRoute
impl Sync for FlowRoute
impl Unpin for FlowRoute
impl UnsafeUnpin for FlowRoute
impl UnwindSafe for FlowRoute
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