[][src]Struct to_bytes::Bytes

pub struct Bytes { /* fields omitted */ }

Implementations

impl Bytes[src]

pub fn new() -> Self[src]

pub unsafe fn from_raw_bytes(raw: Vec<u8>) -> Self[src]

pub unsafe fn from_raw_with_drops(
    raw: Vec<u8>,
    drops: Option<Vec<(usize, unsafe fn(_: &mut Bytes, _: usize))>>
) -> Self
[src]

pub unsafe fn push(
    &mut self,
    bytes: impl AsRef<[u8]>,
    drops: Option<Vec<(usize, unsafe fn(_: &mut Bytes, _: usize))>>
)
[src]

pub fn append(&mut self, bytes: Self)[src]

impl<'a> Bytes[src]

pub unsafe fn read_back<T: ReadBack<'a>>(&'a self) -> &'a T[src]

pub unsafe fn read_back_at<T: ReadBack<'a>>(&'a self, offset: usize) -> &'a T[src]

pub unsafe fn read_back_mut<T: ReadBackMut<'a>>(&'a mut self) -> &'a mut T[src]

pub unsafe fn read_back_mut_at<T: ReadBackMut<'a>>(
    &'a mut self,
    offset: usize
) -> &'a mut T
[src]

impl Bytes[src]

pub unsafe fn transmute_back<R: TransmuteBack>(&self) -> R[src]

pub unsafe fn transmute_back_at<R: TransmuteBack>(&self, offset: usize) -> R[src]

Trait Implementations

impl AsMut<[u8]> for Bytes[src]

impl AsRef<[u8]> for Bytes[src]

impl Clone for Bytes[src]

impl Debug for Bytes[src]

impl Default for Bytes[src]

impl Deref for Bytes[src]

type Target = [u8]

The resulting type after dereferencing.

impl DerefMut for Bytes[src]

impl Display for Bytes[src]

impl Drop for Bytes[src]

impl Eq for Bytes[src]

impl Hash for Bytes[src]

impl Ord for Bytes[src]

impl PartialEq<Bytes> for Bytes[src]

impl PartialOrd<Bytes> for Bytes[src]

impl ToBytes for Bytes[src]

Auto Trait Implementations

impl RefUnwindSafe for Bytes

impl Send for Bytes

impl Sync for Bytes

impl Unpin for Bytes

impl UnwindSafe for Bytes

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToBytes for T where
    T: ToSizedArray<u8>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.