pub enum SelectObjectContentEventStreamItem {
Cont(ContinuationEvent),
End(EndEvent),
Progress(ProgressEvent),
Records(RecordsEvent),
Stats(StatsEvent),
}Expand description
The container for selecting objects from a content event stream.
Variants§
Cont(ContinuationEvent)
The Continuation Event.
End(EndEvent)
The End Event.
Progress(ProgressEvent)
The Progress Event.
Records(RecordsEvent)
The Records Event.
Stats(StatsEvent)
The Stats Event.
Trait Implementations§
Source§impl Clone for SelectObjectContentEventStreamItem
impl Clone for SelectObjectContentEventStreamItem
Source§fn clone(&self) -> SelectObjectContentEventStreamItem
fn clone(&self) -> SelectObjectContentEventStreamItem
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 PartialEq for SelectObjectContentEventStreamItem
impl PartialEq for SelectObjectContentEventStreamItem
Source§fn eq(&self, other: &SelectObjectContentEventStreamItem) -> bool
fn eq(&self, other: &SelectObjectContentEventStreamItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectObjectContentEventStreamItem
Auto Trait Implementations§
impl !Freeze for SelectObjectContentEventStreamItem
impl RefUnwindSafe for SelectObjectContentEventStreamItem
impl Send for SelectObjectContentEventStreamItem
impl Sync for SelectObjectContentEventStreamItem
impl Unpin for SelectObjectContentEventStreamItem
impl UnwindSafe for SelectObjectContentEventStreamItem
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