pub enum DeclarativeEvent {
JoinTuples(JoinTuplesEvent),
}
Expand description
Possible different declarative events.
Variants§
JoinTuples(JoinTuplesEvent)
Tuples materialized during a join.
Trait Implementations§
Source§impl Clone for DeclarativeEvent
impl Clone for DeclarativeEvent
Source§fn clone(&self) -> DeclarativeEvent
fn clone(&self) -> DeclarativeEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 DeclarativeEvent
impl Debug for DeclarativeEvent
Source§impl From<JoinTuplesEvent> for DeclarativeEvent
impl From<JoinTuplesEvent> for DeclarativeEvent
Source§fn from(e: JoinTuplesEvent) -> Self
fn from(e: JoinTuplesEvent) -> Self
Converts to this type from the input type.
Source§impl Ord for DeclarativeEvent
impl Ord for DeclarativeEvent
Source§fn cmp(&self, other: &DeclarativeEvent) -> Ordering
fn cmp(&self, other: &DeclarativeEvent) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeclarativeEvent
impl PartialEq for DeclarativeEvent
Source§impl PartialOrd for DeclarativeEvent
impl PartialOrd for DeclarativeEvent
Source§impl Serialize for DeclarativeEvent
impl Serialize for DeclarativeEvent
impl Eq for DeclarativeEvent
impl StructuralPartialEq for DeclarativeEvent
Auto Trait Implementations§
impl Freeze for DeclarativeEvent
impl RefUnwindSafe for DeclarativeEvent
impl Send for DeclarativeEvent
impl Sync for DeclarativeEvent
impl Unpin for DeclarativeEvent
impl UnwindSafe for DeclarativeEvent
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