#[repr(C)]pub struct aws_http_stream { /* private fields */ }
Expand description
A stream exists for the duration of a request/response exchange. A client creates a stream to send a request and receive a response. A server creates a stream to receive a request and send a response. In http/2, a push-promise stream can be sent by a server and received by a client.
Trait Implementations
sourceimpl Clone for aws_http_stream
impl Clone for aws_http_stream
sourcefn clone(&self) -> aws_http_stream
fn clone(&self) -> aws_http_stream
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_http_stream
impl Debug for aws_http_stream
impl Copy for aws_http_stream
Auto Trait Implementations
impl RefUnwindSafe for aws_http_stream
impl Send for aws_http_stream
impl Sync for aws_http_stream
impl Unpin for aws_http_stream
impl UnwindSafe for aws_http_stream
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