Enum aws_sdk_s3::model::SelectObjectContentEventStream [−][src]
#[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.
Tuple Fields of Cont
End(EndEvent)
The End Event.
Tuple Fields of End
0: EndEvent
Progress(ProgressEvent)
The Progress Event.
Tuple Fields of Progress
Records(RecordsEvent)
The Records Event.
Tuple Fields of Records
0: RecordsEvent
Stats(StatsEvent)
The Stats Event.
Tuple Fields of Stats
0: StatsEvent
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.
This variant is marked as non-exhaustive
Implementations
Tries to convert the enum instance into Cont
, extracting the inner ContinuationEvent
.
Returns Err(&Self)
if it can’t be converted.
Tries to convert the enum instance into Progress
, extracting the inner ProgressEvent
.
Returns Err(&Self)
if it can’t be converted.
Returns true if this is a Progress
.
Tries to convert the enum instance into Records
, extracting the inner RecordsEvent
.
Returns Err(&Self)
if it can’t be converted.
Returns true if this is a Records
.
Tries to convert the enum instance into Stats
, extracting the inner StatsEvent
.
Returns Err(&Self)
if it can’t be converted.
Returns true if the enum instance is the Unknown
variant.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for SelectObjectContentEventStream
impl Sync for SelectObjectContentEventStream
impl Unpin for SelectObjectContentEventStream
impl UnwindSafe for SelectObjectContentEventStream
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more