Struct aws_sdk_s3::primitives::event_stream::EventReceiver
source · pub struct EventReceiver<T, E> { /* private fields */ }
Expand description
Receives unmarshalled events at a time out of an Event Stream.
Implementations§
source§impl<T, E> EventReceiver<T, E>
impl<T, E> EventReceiver<T, E>
sourcepub async fn recv(&mut self) -> Result<Option<T>, SdkError<E, RawMessage>>
pub async fn recv(&mut self) -> Result<Option<T>, SdkError<E, RawMessage>>
Asynchronously tries to receive an event from the stream. If the stream has ended, it
returns an Ok(None)
. If there is a transport layer error, it will return
Err(SdkError::DispatchFailure)
. Service-modeled errors will be a part of the returned
messages.
Trait Implementations§
Auto Trait Implementations§
impl<T, E> !Freeze for EventReceiver<T, E>
impl<T, E> !RefUnwindSafe for EventReceiver<T, E>
impl<T, E> Send for EventReceiver<T, E>where
E: Send,
impl<T, E> Sync for EventReceiver<T, E>where
E: Sync,
impl<T, E> Unpin for EventReceiver<T, E>where
E: Unpin,
impl<T, E> !UnwindSafe for EventReceiver<T, E>
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.