pub enum StreamEventOut {
Encoded {
event: Option<String>,
data: String,
},
Responses(Box<ResponseStreamEvent>),
}Expand description
One converted stream event: pre-encoded inbound frame payload, or the typed Responses event when the inbound side runs the aggregation state machine.
Variants§
Auto Trait Implementations§
impl Freeze for StreamEventOut
impl RefUnwindSafe for StreamEventOut
impl Send for StreamEventOut
impl Sync for StreamEventOut
impl Unpin for StreamEventOut
impl UnsafeUnpin for StreamEventOut
impl UnwindSafe for StreamEventOut
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