Struct fire_http_representation::bytes_stream::MoreBytes [−][src]
pub struct MoreBytes { /* fields omitted */ }
Expand description
A structure that holds multiple Bytes
.
It makes it possible to implement io::Read
over it
to make for example deserialization a bit more memory efficient.
Implementations
impl MoreBytes
[src]
impl MoreBytes
[src]pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
[src]Returns how many bytes are still remaining.
Note
Here not the struct Bytes
are counted but
the actual byte amount.
pub fn next_bytes(&mut self) -> Option<Bytes>
[src]
pub fn next_bytes(&mut self) -> Option<Bytes>
[src]Returning the next Bytes
removing it from MoreBytes
.
pub async fn copy_to_async_write<W>(&self, writer: &mut W) -> Result<()> where
W: AsyncWrite + Unpin,
[src]
pub async fn copy_to_async_write<W>(&self, writer: &mut W) -> Result<()> where
W: AsyncWrite + Unpin,
[src]Writes all bytes to an AsyncWrite
implementor.
Trait Implementations
impl BytesStream for MoreBytes
[src]
impl BytesStream for MoreBytes
[src]impl Read for MoreBytes
[src]
impl Read for MoreBytes
[src]fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
1.36.0[src]
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>
1.36.0[src]Like read
, except that it reads into a slice of buffers. Read more
fn is_read_vectored(&self) -> bool
[src]
fn is_read_vectored(&self) -> bool
[src]can_vector
)Determines if this Read
er has an efficient read_vectored
implementation. Read more
unsafe fn initializer(&self) -> Initializer
[src]
unsafe fn initializer(&self) -> Initializer
[src]read_initializer
)Determines if this Read
er can work with buffers of uninitialized
memory. Read more
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
1.0.0[src]
fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>
1.0.0[src]Read all bytes until EOF in this source, placing them into buf
. Read more
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0[src]
fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>
1.0.0[src]Read all bytes until EOF in this source, appending them to buf
. Read more
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
1.6.0[src]
fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>
1.6.0[src]Read the exact number of bytes required to fill buf
. Read more
fn by_ref(&mut self) -> &mut Self
1.0.0[src]
fn by_ref(&mut self) -> &mut Self
1.0.0[src]Creates a “by reference” adaptor for this instance of Read
. Read more
Auto Trait Implementations
impl RefUnwindSafe for MoreBytes
impl Send for MoreBytes
impl Sync for MoreBytes
impl Unpin for MoreBytes
impl UnwindSafe for MoreBytes
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<S> BytesStreamExt for S where
S: BytesStream + ?Sized,
[src]
impl<S> BytesStreamExt for S where
S: BytesStream + ?Sized,
[src]fn next_bytes<'a>(&'a mut self) -> NextBytes<'a, Self> where
Self: Unpin,
[src]
fn next_bytes<'a>(&'a mut self) -> NextBytes<'a, Self> where
Self: Unpin,
[src]returns the next bytes. Read more