pub struct NoSeek<T> { /* private fields */ }
Expand description
Implementations§
source§impl<T> NoSeek<T>
impl<T> NoSeek<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes this wrapper, returning the underlying value.
Trait Implementations§
source§impl<T: Read> Read for NoSeek<T>
impl<T: Read> Read for NoSeek<T>
source§fn read(&mut self, buf: &mut [u8]) -> Result<usize>
fn read(&mut self, buf: &mut [u8]) -> Result<usize>
Pull some bytes from this source into the specified buffer, returning
how many bytes were read. Read more
source§fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
Like
read
, except that it reads into a slice of buffers. Read moresource§fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize>
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize>
Reads all bytes until EOF in this source, placing them into
buf
. Read moresource§fn read_to_string(&mut self, buf: &mut String) -> Result<usize>
fn read_to_string(&mut self, buf: &mut String) -> Result<usize>
Reads all bytes until EOF in this source, appending them to
buf
. Read moresource§fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>
fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>
Reads the exact number of bytes required to fill
buf
. Read moresource§fn is_read_vectored(&self) -> bool
fn is_read_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)source§fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Pull some bytes from this source into the specified buffer. Read more
source§fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
read_buf
)Reads the exact number of bytes required to fill
cursor
. Read more1.0.0 · source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Creates a “by reference” adaptor for this instance of
Read
. Read moresource§impl<T> Seek for NoSeek<T>
impl<T> Seek for NoSeek<T>
source§fn seek(&mut self, pos: SeekFrom) -> Result<u64>
fn seek(&mut self, pos: SeekFrom) -> Result<u64>
Seek to an offset, in bytes, in a stream. Read more
source§fn stream_position(&mut self) -> Result<u64>
fn stream_position(&mut self) -> Result<u64>
Returns the current seek position from the start of the stream. Read more
1.55.0 · source§fn rewind(&mut self) -> Result<(), Error>
fn rewind(&mut self) -> Result<(), Error>
Rewind to the beginning of a stream. Read more
source§impl<T: Write> Write for NoSeek<T>
impl<T: Write> Write for NoSeek<T>
source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Writes a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn write_all(&mut self, buf: &[u8]) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<()>
Attempts to write an entire buffer into this writer. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<T> Freeze for NoSeek<T>where
T: Freeze,
impl<T> RefUnwindSafe for NoSeek<T>where
T: RefUnwindSafe,
impl<T> Send for NoSeek<T>where
T: Send,
impl<T> Sync for NoSeek<T>where
T: Sync,
impl<T> Unpin for NoSeek<T>where
T: Unpin,
impl<T> UnwindSafe for NoSeek<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<R> BinReaderExt for R
impl<R> BinReaderExt for R
source§fn read_type<'a, T>(&mut self, endian: Endian) -> BinResult<T>
fn read_type<'a, T>(&mut self, endian: Endian) -> BinResult<T>
Read
T
from the reader with the given byte order. Read moresource§fn read_be<'a, T>(&mut self) -> BinResult<T>
fn read_be<'a, T>(&mut self) -> BinResult<T>
Read
T
from the reader assuming big-endian byte order. Read moresource§fn read_le<'a, T>(&mut self) -> BinResult<T>
fn read_le<'a, T>(&mut self) -> BinResult<T>
Read
T
from the reader assuming little-endian byte order. Read moresource§fn read_ne<'a, T>(&mut self) -> BinResult<T>
fn read_ne<'a, T>(&mut self) -> BinResult<T>
Read
T
from the reader assuming native-endian byte order. Read moresource§fn read_type_args<T>(
&mut self,
endian: Endian,
args: T::Args<'_>,
) -> BinResult<T>where
T: BinRead,
fn read_type_args<T>(
&mut self,
endian: Endian,
args: T::Args<'_>,
) -> BinResult<T>where
T: BinRead,
Read
T
from the reader with the given byte order and arguments. Read moresource§fn read_be_args<T>(&mut self, args: T::Args<'_>) -> BinResult<T>where
T: BinRead,
fn read_be_args<T>(&mut self, args: T::Args<'_>) -> BinResult<T>where
T: BinRead,
Read
T
from the reader, assuming big-endian byte order, using the
given arguments. Read moresource§impl<W> BinWriterExt for W
impl<W> BinWriterExt for W
source§fn write_type<T: BinWrite>(
&mut self,
value: &T,
endian: Endian,
) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
fn write_type<T: BinWrite>(
&mut self,
value: &T,
endian: Endian,
) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
Write
T
to the writer with the given byte order. Read moresource§fn write_be<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
fn write_be<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
Write
T
to the writer assuming big-endian byte order. Read moresource§fn write_le<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
fn write_le<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
Write
T
to the writer assuming little-endian byte order. Read moresource§fn write_ne<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
fn write_ne<T: BinWrite>(&mut self, value: &T) -> BinResult<()>where
for<'a> T::Args<'a>: Required,
Write
T
to the writer assuming native-endian byte order. Read moresource§fn write_type_args<T: BinWrite>(
&mut self,
value: &T,
endian: Endian,
args: T::Args<'_>,
) -> BinResult<()>
fn write_type_args<T: BinWrite>( &mut self, value: &T, endian: Endian, args: T::Args<'_>, ) -> BinResult<()>
Write
T
to the writer with the given byte order and arguments. Read moresource§fn write_be_args<T: BinWrite>(
&mut self,
value: &T,
args: T::Args<'_>,
) -> BinResult<()>
fn write_be_args<T: BinWrite>( &mut self, value: &T, args: T::Args<'_>, ) -> BinResult<()>
Write
T
to the writer, assuming big-endian byte order, using the
given arguments. Read moresource§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