Struct aws_smithy_http::event_stream::Receiver
source · [−]pub struct Receiver<T, E> { /* private fields */ }Expand description
Receives Smithy-modeled messages out of an Event Stream.
Implementations
sourceimpl<T, E> Receiver<T, E>
impl<T, E> Receiver<T, E>
sourcepub fn new(
unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + 'static,
body: SdkBody
) -> Self
pub fn new(
unmarshaller: impl UnmarshallMessage<Output = T, Error = E> + Send + '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> !RefUnwindSafe for Receiver<T, E>
impl<T, E> Send for Receiver<T, E>where
E: Send,
impl<T, E> !Sync for Receiver<T, E>
impl<T, E> Unpin for Receiver<T, E>where
E: Unpin,
impl<T, E> !UnwindSafe for Receiver<T, E>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more