pub enum EventFlow {
Simple,
StartDeltaStop {
start_events: Vec<String>,
delta_events: Vec<String>,
stop_events: Vec<String>,
},
}Expand description
Defines the event flow pattern for streaming
Variants§
Simple
Simple streaming - just emit events as they arrive
StartDeltaStop
Start-Delta-Stop pattern with specific event types
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EventFlow
impl RefUnwindSafe for EventFlow
impl Send for EventFlow
impl Sync for EventFlow
impl Unpin for EventFlow
impl UnwindSafe for EventFlow
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