pub struct ComponentEquivalent {
pub equivalent_interface: InterfaceDef,
pub event_consumer_interfaces: Vec<InterfaceDef>,
}Expand description
Ergebnis der Component-Transformation: das Equivalent-Interface (Spec §6.3.2) plus alle implied Event-Consumer-Interfaces (Spec §6.6.6.2 “EventConsumers”-Module).
Fields§
§equivalent_interface: InterfaceDefDas Component-Equivalent-Interface (Spec §6.3.2).
event_consumer_interfaces: Vec<InterfaceDef>Implied <event_type>Consumer Interfaces fuer die
consumes/emits/publishes-Ports (Spec §6.6.6.2 “EventConsumers”
scope).
Trait Implementations§
Source§impl Clone for ComponentEquivalent
impl Clone for ComponentEquivalent
Source§fn clone(&self) -> ComponentEquivalent
fn clone(&self) -> ComponentEquivalent
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 ComponentEquivalent
impl Debug for ComponentEquivalent
Source§impl PartialEq for ComponentEquivalent
impl PartialEq for ComponentEquivalent
Source§fn eq(&self, other: &ComponentEquivalent) -> bool
fn eq(&self, other: &ComponentEquivalent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComponentEquivalent
Auto Trait Implementations§
impl Freeze for ComponentEquivalent
impl RefUnwindSafe for ComponentEquivalent
impl Send for ComponentEquivalent
impl Sync for ComponentEquivalent
impl Unpin for ComponentEquivalent
impl UnsafeUnpin for ComponentEquivalent
impl UnwindSafe for ComponentEquivalent
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