Enum wasmtime_wasi_http::body::StreamContext
source · pub enum StreamContext {
Request,
Response,
}
Variants§
Implementations§
source§impl StreamContext
impl StreamContext
sourcepub fn as_body_error(&self, size: u64) -> ErrorCode
pub fn as_body_error(&self, size: u64) -> ErrorCode
Construct an http request or response body size error.
Trait Implementations§
source§impl Clone for StreamContext
impl Clone for StreamContext
source§fn clone(&self) -> StreamContext
fn clone(&self) -> StreamContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StreamContext
impl Debug for StreamContext
source§impl PartialEq for StreamContext
impl PartialEq for StreamContext
source§fn eq(&self, other: &StreamContext) -> bool
fn eq(&self, other: &StreamContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StreamContext
impl Eq for StreamContext
impl StructuralPartialEq for StreamContext
Auto Trait Implementations§
impl Freeze for StreamContext
impl RefUnwindSafe for StreamContext
impl Send for StreamContext
impl Sync for StreamContext
impl Unpin for StreamContext
impl UnwindSafe for StreamContext
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
source§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.source§fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>where
T: AsFilelike,
source§fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>where
T: AsFilelike,
Set the “status” flags for the
self
file descriptor. Read more