Enum aws_sdk_s3::model::SelectObjectContentEventStream [−][src]
#[non_exhaustive]
pub enum SelectObjectContentEventStream {
Cont(ContinuationEvent),
End(EndEvent),
Progress(ProgressEvent),
Records(RecordsEvent),
Stats(StatsEvent),
}
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
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.
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