Struct simple_bytes::BytesMut

source ·
pub struct BytesMut<'a> { /* private fields */ }
Expand description

A mutable slice wrapper that implements BytesWrite

Implementations§

source§

impl<'a> BytesMut<'a>

source

pub fn new(position: usize, inner: &'a mut [u8]) -> Self

You should probably use:

let bytes: BytesMut = slice.into();
// or
let bytes = BytesMut::from(slice);

Trait Implementations§

source§

impl BytesRead for BytesMut<'_>

source§

fn as_slice(&self) -> &[u8]

Returns the entire slice.
source§

fn remaining(&self) -> &[u8]

Returns all remaining bytes.
source§

fn try_read(&mut self, len: usize) -> Result<&[u8], ReadError>

Try to read a given length of bytes. Read more
source§

fn peek(&self, len: usize) -> Option<&[u8]>

Tries to read a given length without updating the internal position. Returns None if there are not enought bytes remaining.
source§

fn len(&self) -> usize

Returns the length of the entire slice.
source§

fn read(&mut self, len: usize) -> &[u8]

Reads a given length of bytes. Read more
source§

fn try_read_u8(&mut self) -> Result<u8, ReadError>

Try to read 1 bytes in big-endian converting them into an u8.
source§

fn read_u8(&mut self) -> u8

Reads 1 bytes in big-endian converting them into an u8. Read more
source§

fn try_read_u16(&mut self) -> Result<u16, ReadError>

Try to read 2 bytes in big-endian converting them into an u16.
source§

fn read_u16(&mut self) -> u16

Reads 2 bytes in big-endian converting them into an u16. Read more
source§

fn try_read_u32(&mut self) -> Result<u32, ReadError>

Try to read 4 bytes in big-endian converting them into an u32.
source§

fn read_u32(&mut self) -> u32

Reads 4 bytes in big-endian converting them into an u32. Read more
source§

fn try_read_u64(&mut self) -> Result<u64, ReadError>

Try to read 8 bytes in big-endian converting them into an u64.
source§

fn read_u64(&mut self) -> u64

Reads 8 bytes in big-endian converting them into an u64. Read more
source§

fn try_read_u128(&mut self) -> Result<u128, ReadError>

Try to read 16 bytes in big-endian converting them into an u128.
source§

fn read_u128(&mut self) -> u128

Reads 16 bytes in big-endian converting them into an u128. Read more
source§

fn try_read_i8(&mut self) -> Result<i8, ReadError>

Try to read 1 bytes in big-endian converting them into an i8.
source§

fn read_i8(&mut self) -> i8

Reads 1 bytes in big-endian converting them into an i8. Read more
source§

fn try_read_i16(&mut self) -> Result<i16, ReadError>

Try to read 2 bytes in big-endian converting them into an i16.
source§

fn read_i16(&mut self) -> i16

Reads 2 bytes in big-endian converting them into an i16. Read more
source§

fn try_read_i32(&mut self) -> Result<i32, ReadError>

Try to read 4 bytes in big-endian converting them into an i32.
source§

fn read_i32(&mut self) -> i32

Reads 4 bytes in big-endian converting them into an i32. Read more
source§

fn try_read_i64(&mut self) -> Result<i64, ReadError>

Try to read 8 bytes in big-endian converting them into an i64.
source§

fn read_i64(&mut self) -> i64

Reads 8 bytes in big-endian converting them into an i64. Read more
source§

fn try_read_i128(&mut self) -> Result<i128, ReadError>

Try to read 16 bytes in big-endian converting them into an i128.
source§

fn read_i128(&mut self) -> i128

Reads 16 bytes in big-endian converting them into an i128. Read more
source§

fn try_read_f32(&mut self) -> Result<f32, ReadError>

Try to read 4 bytes in big-endian converting them into an f32.
source§

fn read_f32(&mut self) -> f32

Reads 4 bytes in big-endian converting them into an f32. Read more
source§

fn try_read_f64(&mut self) -> Result<f64, ReadError>

Try to read 8 bytes in big-endian converting them into an f64.
source§

fn read_f64(&mut self) -> f64

Reads 8 bytes in big-endian converting them into an f64. Read more
source§

fn try_read_le_u8(&mut self) -> Result<u8, ReadError>

Try to read 1 bytes in little-endian converting them into an u8.
source§

fn read_le_u8(&mut self) -> u8

Reads 1 bytes in little-endian converting them into an u8. Read more
source§

fn try_read_le_u16(&mut self) -> Result<u16, ReadError>

Try to read 2 bytes in little-endian converting them into an u16.
source§

fn read_le_u16(&mut self) -> u16

Reads 2 bytes in little-endian converting them into an u16. Read more
source§

fn try_read_le_u32(&mut self) -> Result<u32, ReadError>

Try to read 4 bytes in little-endian converting them into an u32.
source§

fn read_le_u32(&mut self) -> u32

Reads 4 bytes in little-endian converting them into an u32. Read more
source§

fn try_read_le_u64(&mut self) -> Result<u64, ReadError>

Try to read 8 bytes in little-endian converting them into an u64.
source§

fn read_le_u64(&mut self) -> u64

Reads 8 bytes in little-endian converting them into an u64. Read more
source§

fn try_read_le_u128(&mut self) -> Result<u128, ReadError>

Try to read 16 bytes in little-endian converting them into an u128.
source§

fn read_le_u128(&mut self) -> u128

Reads 16 bytes in little-endian converting them into an u128. Read more
source§

fn try_read_le_i8(&mut self) -> Result<i8, ReadError>

Try to read 1 bytes in little-endian converting them into an i8.
source§

fn read_le_i8(&mut self) -> i8

Reads 1 bytes in little-endian converting them into an i8. Read more
source§

fn try_read_le_i16(&mut self) -> Result<i16, ReadError>

Try to read 2 bytes in little-endian converting them into an i16.
source§

fn read_le_i16(&mut self) -> i16

Reads 2 bytes in little-endian converting them into an i16. Read more
source§

fn try_read_le_i32(&mut self) -> Result<i32, ReadError>

Try to read 4 bytes in little-endian converting them into an i32.
source§

fn read_le_i32(&mut self) -> i32

Reads 4 bytes in little-endian converting them into an i32. Read more
source§

fn try_read_le_i64(&mut self) -> Result<i64, ReadError>

Try to read 8 bytes in little-endian converting them into an i64.
source§

fn read_le_i64(&mut self) -> i64

Reads 8 bytes in little-endian converting them into an i64. Read more
source§

fn try_read_le_i128(&mut self) -> Result<i128, ReadError>

Try to read 16 bytes in little-endian converting them into an i128.
source§

fn read_le_i128(&mut self) -> i128

Reads 16 bytes in little-endian converting them into an i128. Read more
source§

fn try_read_le_f32(&mut self) -> Result<f32, ReadError>

Try to read 4 bytes in little-endian converting them into an f32.
source§

fn read_le_f32(&mut self) -> f32

Reads 4 bytes in little-endian converting them into an f32. Read more
source§

fn try_read_le_f64(&mut self) -> Result<f64, ReadError>

Try to read 8 bytes in little-endian converting them into an f64.
source§

fn read_le_f64(&mut self) -> f64

Reads 8 bytes in little-endian converting them into an f64. Read more
source§

impl BytesSeek for BytesMut<'_>

source§

fn position(&self) -> usize

Returns the internal position.

source§

fn try_seek(&mut self, pos: usize) -> Result<(), SeekError>

Sets the internal position.

Fails

If the position exceeds the slice.

source§

fn seek(&mut self, pos: usize)

Sets the internal position.
source§

fn try_advance(&mut self, adv: usize) -> Result<(), SeekError>

Advances the internal position if possible.
source§

fn advance(&mut self, adv: usize)

Advances the internal position. Read more
source§

impl BytesWrite for BytesMut<'_>

source§

fn as_mut(&mut self) -> &mut [u8]

Returns the entire slice mutably.
source§

fn as_bytes(&self) -> Bytes<'_>

Returns the entire slice as a bytes struct setting the position of the new Bytes to 0.
source§

fn remaining_mut(&mut self) -> &mut [u8]

Returns the remaining bytes mutably.
source§

fn try_write(&mut self, slice: impl AsRef<[u8]>) -> Result<(), WriteError>

Writes a slice.
source§

fn write(&mut self, slice: impl AsRef<[u8]>)

Writes a slice. Read more
source§

fn try_write_u8(&mut self, num: u8) -> Result<(), WriteError>

Try to write u8 in big-endian.`
source§

fn write_u8(&mut self, num: u8)

Writes an u8 in big-endian. Read more
source§

fn try_write_u16(&mut self, num: u16) -> Result<(), WriteError>

Try to write u16 in big-endian.`
source§

fn write_u16(&mut self, num: u16)

Writes an u16 in big-endian. Read more
source§

fn try_write_u32(&mut self, num: u32) -> Result<(), WriteError>

Try to write u32 in big-endian.`
source§

fn write_u32(&mut self, num: u32)

Writes an u32 in big-endian. Read more
source§

fn try_write_u64(&mut self, num: u64) -> Result<(), WriteError>

Try to write u64 in big-endian.`
source§

fn write_u64(&mut self, num: u64)

Writes an u64 in big-endian. Read more
source§

fn try_write_u128(&mut self, num: u128) -> Result<(), WriteError>

Try to write u128 in big-endian.`
source§

fn write_u128(&mut self, num: u128)

Writes an u128 in big-endian. Read more
source§

fn try_write_i8(&mut self, num: i8) -> Result<(), WriteError>

Try to write i8 in big-endian.`
source§

fn write_i8(&mut self, num: i8)

Writes an i8 in big-endian. Read more
source§

fn try_write_i16(&mut self, num: i16) -> Result<(), WriteError>

Try to write i16 in big-endian.`
source§

fn write_i16(&mut self, num: i16)

Writes an i16 in big-endian. Read more
source§

fn try_write_i32(&mut self, num: i32) -> Result<(), WriteError>

Try to write i32 in big-endian.`
source§

fn write_i32(&mut self, num: i32)

Writes an i32 in big-endian. Read more
source§

fn try_write_i64(&mut self, num: i64) -> Result<(), WriteError>

Try to write i64 in big-endian.`
source§

fn write_i64(&mut self, num: i64)

Writes an i64 in big-endian. Read more
source§

fn try_write_i128(&mut self, num: i128) -> Result<(), WriteError>

Try to write i128 in big-endian.`
source§

fn write_i128(&mut self, num: i128)

Writes an i128 in big-endian. Read more
source§

fn try_write_f32(&mut self, num: f32) -> Result<(), WriteError>

Try to write f32 in big-endian.`
source§

fn write_f32(&mut self, num: f32)

Writes an f32 in big-endian. Read more
source§

fn try_write_f64(&mut self, num: f64) -> Result<(), WriteError>

Try to write f64 in big-endian.`
source§

fn write_f64(&mut self, num: f64)

Writes an f64 in big-endian. Read more
source§

fn try_write_le_u8(&mut self, num: u8) -> Result<(), WriteError>

Try to write u8 in little-endian.`
source§

fn write_le_u8(&mut self, num: u8)

Writes an u8 in little-endian. Read more
source§

fn try_write_le_u16(&mut self, num: u16) -> Result<(), WriteError>

Try to write u16 in little-endian.`
source§

fn write_le_u16(&mut self, num: u16)

Writes an u16 in little-endian. Read more
source§

fn try_write_le_u32(&mut self, num: u32) -> Result<(), WriteError>

Try to write u32 in little-endian.`
source§

fn write_le_u32(&mut self, num: u32)

Writes an u32 in little-endian. Read more
source§

fn try_write_le_u64(&mut self, num: u64) -> Result<(), WriteError>

Try to write u64 in little-endian.`
source§

fn write_le_u64(&mut self, num: u64)

Writes an u64 in little-endian. Read more
source§

fn try_write_le_u128(&mut self, num: u128) -> Result<(), WriteError>

Try to write u128 in little-endian.`
source§

fn write_le_u128(&mut self, num: u128)

Writes an u128 in little-endian. Read more
source§

fn try_write_le_i8(&mut self, num: i8) -> Result<(), WriteError>

Try to write i8 in little-endian.`
source§

fn write_le_i8(&mut self, num: i8)

Writes an i8 in little-endian. Read more
source§

fn try_write_le_i16(&mut self, num: i16) -> Result<(), WriteError>

Try to write i16 in little-endian.`
source§

fn write_le_i16(&mut self, num: i16)

Writes an i16 in little-endian. Read more
source§

fn try_write_le_i32(&mut self, num: i32) -> Result<(), WriteError>

Try to write i32 in little-endian.`
source§

fn write_le_i32(&mut self, num: i32)

Writes an i32 in little-endian. Read more
source§

fn try_write_le_i64(&mut self, num: i64) -> Result<(), WriteError>

Try to write i64 in little-endian.`
source§

fn write_le_i64(&mut self, num: i64)

Writes an i64 in little-endian. Read more
source§

fn try_write_le_i128(&mut self, num: i128) -> Result<(), WriteError>

Try to write i128 in little-endian.`
source§

fn write_le_i128(&mut self, num: i128)

Writes an i128 in little-endian. Read more
source§

fn try_write_le_f32(&mut self, num: f32) -> Result<(), WriteError>

Try to write f32 in little-endian.`
source§

fn write_le_f32(&mut self, num: f32)

Writes an f32 in little-endian. Read more
source§

fn try_write_le_f64(&mut self, num: f64) -> Result<(), WriteError>

Try to write f64 in little-endian.`
source§

fn write_le_f64(&mut self, num: f64)

Writes an f64 in little-endian. Read more
source§

impl<'a> Debug for BytesMut<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a mut [u8]> for BytesMut<'a>

source§

fn from(s: &'a mut [u8]) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for BytesMut<'a>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> PartialEq<BytesMut<'a>> for BytesMut<'a>

source§

fn eq(&self, other: &BytesMut<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Read for BytesMut<'_>

source§

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
1.36.0 · source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>

Like read, except that it reads into a slice of buffers. Read more
source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · source§

fn read_to_end(&mut self, buf: &mut Vec<u8, Global>) -> Result<usize, Error>

Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Read the exact number of bytes required to fill buf. Read more
source§

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>

🔬This is a nightly-only experimental API. (read_buf)
Read the exact number of bytes required to fill cursor. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Selfwhere Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · source§

fn bytes(self) -> Bytes<Self>where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · source§

fn chain<R>(self, next: R) -> Chain<Self, R>where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · source§

fn take(self, limit: u64) -> Take<Self>where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
source§

impl Seek for BytesMut<'_>

source§

fn seek(&mut self, pos: SeekFrom) -> Result<u64>

Seek to an offset, in bytes, in a stream. Read more
1.55.0 · source§

fn rewind(&mut self) -> Result<(), Error>

Rewind to the beginning of a stream. Read more
source§

fn stream_len(&mut self) -> Result<u64, Error>

🔬This is a nightly-only experimental API. (seek_stream_len)
Returns the length of this stream (in bytes). Read more
1.51.0 · source§

fn stream_position(&mut self) -> Result<u64, Error>

Returns the current seek position from the start of the stream. Read more
source§

impl Write for BytesMut<'_>

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

fn flush(&mut self) -> Result<()>

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

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
1.0.0 · source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Selfwhere Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
source§

impl<'a> Eq for BytesMut<'a>

source§

impl<'a> StructuralEq for BytesMut<'a>

source§

impl<'a> StructuralPartialEq for BytesMut<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for BytesMut<'a>

§

impl<'a> Send for BytesMut<'a>

§

impl<'a> Sync for BytesMut<'a>

§

impl<'a> Unpin for BytesMut<'a>

§

impl<'a> !UnwindSafe for BytesMut<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.