#[non_exhaustive]
pub enum SelectObjectContentEventStream {
Cont(ContinuationEvent),
End(EndEvent),
Progress(ProgressEvent),
Records(RecordsEvent),
Stats(StatsEvent),
Unknown,
}
Expand description
The container for selecting objects from a content event stream.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
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.
Unknown
The Unknown
variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown
variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations
sourceimpl SelectObjectContentEventStream
impl SelectObjectContentEventStream
sourcepub fn as_cont(&self) -> Result<&ContinuationEvent, &Self>
pub fn as_cont(&self) -> Result<&ContinuationEvent, &Self>
Tries to convert the enum instance into Cont
, extracting the inner ContinuationEvent
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_progress(&self) -> Result<&ProgressEvent, &Self>
pub fn as_progress(&self) -> Result<&ProgressEvent, &Self>
Tries to convert the enum instance into Progress
, extracting the inner ProgressEvent
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn is_progress(&self) -> bool
pub fn is_progress(&self) -> bool
Returns true if this is a Progress
.
sourcepub fn as_records(&self) -> Result<&RecordsEvent, &Self>
pub fn as_records(&self) -> Result<&RecordsEvent, &Self>
Tries to convert the enum instance into Records
, extracting the inner RecordsEvent
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn is_records(&self) -> bool
pub fn is_records(&self) -> bool
Returns true if this is a Records
.
sourcepub fn as_stats(&self) -> Result<&StatsEvent, &Self>
pub fn as_stats(&self) -> Result<&StatsEvent, &Self>
Tries to convert the enum instance into Stats
, extracting the inner StatsEvent
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown
variant.
Trait Implementations
sourceimpl Clone for SelectObjectContentEventStream
impl Clone for SelectObjectContentEventStream
sourcefn clone(&self) -> SelectObjectContentEventStream
fn clone(&self) -> SelectObjectContentEventStream
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<SelectObjectContentEventStream> for SelectObjectContentEventStream
impl PartialEq<SelectObjectContentEventStream> for SelectObjectContentEventStream
sourcefn eq(&self, other: &SelectObjectContentEventStream) -> bool
fn eq(&self, other: &SelectObjectContentEventStream) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SelectObjectContentEventStream) -> bool
fn ne(&self, other: &SelectObjectContentEventStream) -> bool
This method tests for !=
.
impl StructuralPartialEq for SelectObjectContentEventStream
Auto Trait Implementations
impl RefUnwindSafe for SelectObjectContentEventStream
impl Send for SelectObjectContentEventStream
impl Sync for SelectObjectContentEventStream
impl Unpin for SelectObjectContentEventStream
impl UnwindSafe for SelectObjectContentEventStream
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more