#[non_exhaustive]pub enum StructuredStreamEvent {
Snapshot(StructuredStreamSnapshot),
Done,
Error(FMError),
}Expand description
One structured stream event.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for StructuredStreamEvent
impl Clone for StructuredStreamEvent
Source§fn clone(&self) -> StructuredStreamEvent
fn clone(&self) -> StructuredStreamEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StructuredStreamEvent
impl Debug for StructuredStreamEvent
Source§impl PartialEq for StructuredStreamEvent
impl PartialEq for StructuredStreamEvent
Source§fn eq(&self, other: &StructuredStreamEvent) -> bool
fn eq(&self, other: &StructuredStreamEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StructuredStreamEvent
Auto Trait Implementations§
impl Freeze for StructuredStreamEvent
impl RefUnwindSafe for StructuredStreamEvent
impl Send for StructuredStreamEvent
impl Sync for StructuredStreamEvent
impl Unpin for StructuredStreamEvent
impl UnsafeUnpin for StructuredStreamEvent
impl UnwindSafe for StructuredStreamEvent
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