pub struct RoutedInputDescriptor {
pub route_id: RouteId,
pub instance_id: MachineInstanceId,
pub input_variant: InputVariantId,
pub bindings: Vec<(FieldId, FieldId)>,
}Expand description
Typed route descriptor returned by RouteTable::resolve.
Always input-kind: RouteTable::resolve consults only the input
index, so signal-kind routes never surface here. bindings pairs
producer-side FieldIds with the consumer-side FieldIds they
must populate, in declaration order. Literal / owner-provided
bindings are filtered out at table build time — the dispatcher only
handles producer-field bindings (the other kinds are supplied by
the consumer surface or literal machinery upstream).
Fields§
§route_id: RouteId§instance_id: MachineInstanceId§input_variant: InputVariantId§bindings: Vec<(FieldId, FieldId)>Trait Implementations§
Source§impl Clone for RoutedInputDescriptor
impl Clone for RoutedInputDescriptor
Source§fn clone(&self) -> RoutedInputDescriptor
fn clone(&self) -> RoutedInputDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RoutedInputDescriptor
impl Debug for RoutedInputDescriptor
Source§impl PartialEq for RoutedInputDescriptor
impl PartialEq for RoutedInputDescriptor
Source§fn eq(&self, other: &RoutedInputDescriptor) -> bool
fn eq(&self, other: &RoutedInputDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RoutedInputDescriptor
impl StructuralPartialEq for RoutedInputDescriptor
Auto Trait Implementations§
impl Freeze for RoutedInputDescriptor
impl RefUnwindSafe for RoutedInputDescriptor
impl Send for RoutedInputDescriptor
impl Sync for RoutedInputDescriptor
impl Unpin for RoutedInputDescriptor
impl UnsafeUnpin for RoutedInputDescriptor
impl UnwindSafe for RoutedInputDescriptor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.