pub struct EventTypeEquivalent {
pub valuetype_name: Identifier,
pub valuetype_bases: Vec<ScopedName>,
pub consumer_interface: InterfaceDef,
}Expand description
Ergebnis der EventType-Transformation — Spec §6.6.1.1.
Aus eventtype E { state-members } werden zwei IDL-Definitionen
abgeleitet:
valuetype E { state-members }(mit zusaetzlicher Vererbung vonComponents::EventBasefuer die erste eventtype in einer Kette).interface EConsumer : Components::EventConsumerBase { void push_E(in E the_e); };.
Fields§
§valuetype_name: IdentifierDer equivalent valuetype-Name (mit : Components::EventBase fuer
erste in der Kette).
valuetype_bases: Vec<ScopedName>Inheritance-Bases des Valuetype (nach Spec §6.6.1.1: erste in
Kette Components::EventBase, derived-Eventtype BaseValueType, :: Components::EventBase).
consumer_interface: InterfaceDef<event_type>Consumer-Interface (Spec §6.6.1.1).
Trait Implementations§
Source§impl Clone for EventTypeEquivalent
impl Clone for EventTypeEquivalent
Source§fn clone(&self) -> EventTypeEquivalent
fn clone(&self) -> EventTypeEquivalent
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 EventTypeEquivalent
impl Debug for EventTypeEquivalent
Source§impl PartialEq for EventTypeEquivalent
impl PartialEq for EventTypeEquivalent
Source§fn eq(&self, other: &EventTypeEquivalent) -> bool
fn eq(&self, other: &EventTypeEquivalent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EventTypeEquivalent
Auto Trait Implementations§
impl Freeze for EventTypeEquivalent
impl RefUnwindSafe for EventTypeEquivalent
impl Send for EventTypeEquivalent
impl Sync for EventTypeEquivalent
impl Unpin for EventTypeEquivalent
impl UnsafeUnpin for EventTypeEquivalent
impl UnwindSafe for EventTypeEquivalent
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