pub struct StreamJoinPattern {
pub left: StreamPattern,
pub right: StreamPattern,
pub join_conditions: Vec<JoinCondition>,
}Expand description
Stream join specification
Fields§
§left: StreamPattern§right: StreamPattern§join_conditions: Vec<JoinCondition>Trait Implementations§
Source§impl Clone for StreamJoinPattern
impl Clone for StreamJoinPattern
Source§fn clone(&self) -> StreamJoinPattern
fn clone(&self) -> StreamJoinPattern
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 StreamJoinPattern
impl Debug for StreamJoinPattern
Source§impl PartialEq for StreamJoinPattern
impl PartialEq for StreamJoinPattern
impl StructuralPartialEq for StreamJoinPattern
Auto Trait Implementations§
impl Freeze for StreamJoinPattern
impl RefUnwindSafe for StreamJoinPattern
impl Send for StreamJoinPattern
impl Sync for StreamJoinPattern
impl Unpin for StreamJoinPattern
impl UnwindSafe for StreamJoinPattern
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