#[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§
source§impl 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§
source§impl Clone for SelectObjectContentEventStream
impl Clone for SelectObjectContentEventStream
source§fn clone(&self) -> SelectObjectContentEventStream
fn clone(&self) -> SelectObjectContentEventStream
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for SelectObjectContentEventStream
impl PartialEq for SelectObjectContentEventStream
source§fn eq(&self, other: &SelectObjectContentEventStream) -> bool
fn eq(&self, other: &SelectObjectContentEventStream) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SelectObjectContentEventStream
Auto Trait Implementations§
impl Freeze for SelectObjectContentEventStream
impl RefUnwindSafe for SelectObjectContentEventStream
impl Send for SelectObjectContentEventStream
impl Sync for SelectObjectContentEventStream
impl Unpin for SelectObjectContentEventStream
impl UnwindSafe for SelectObjectContentEventStream
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)