Struct aws_smithy_http::event_stream::Receiver
source · pub struct Receiver<T, E> { /* private fields */ }
Available on crate feature
event-stream
only.Expand description
Receives Smithy-modeled messages out of an Event Stream.
Implementations§
source§impl<T, E> Receiver<T, E>
impl<T, E> Receiver<T, E>
sourcepub fn new(
unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + Sync + 'static,
body: SdkBody,
) -> Self
pub fn new( unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + Sync + 'static, body: SdkBody, ) -> Self
Creates a new Receiver
with the given message unmarshaller and SDK body.
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 a message 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 Receiver<T, E>
impl<T, E> !RefUnwindSafe for Receiver<T, E>
impl<T, E> Send for Receiver<T, E>where
E: Send,
impl<T, E> Sync for Receiver<T, E>where
E: Sync,
impl<T, E> Unpin for Receiver<T, E>where
E: Unpin,
impl<T, E> !UnwindSafe for Receiver<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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.