pub struct StreamPattern {
pub var_name: String,
pub event_type: Option<String>,
pub source: StreamSource,
}Expand description
Stream pattern with variable binding
Fields§
§var_name: String§event_type: Option<String>§source: StreamSourceTrait Implementations§
Source§impl Clone for StreamPattern
impl Clone for StreamPattern
Source§fn clone(&self) -> StreamPattern
fn clone(&self) -> StreamPattern
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 StreamPattern
impl Debug for StreamPattern
Source§impl PartialEq for StreamPattern
impl PartialEq for StreamPattern
impl StructuralPartialEq for StreamPattern
Auto Trait Implementations§
impl Freeze for StreamPattern
impl RefUnwindSafe for StreamPattern
impl Send for StreamPattern
impl Sync for StreamPattern
impl Unpin for StreamPattern
impl UnwindSafe for StreamPattern
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