[][src]Struct audiopus::packet::MutPacket

pub struct MutPacket<'a>(_);

A newtype around &mut [u8] to guarantee that accessing length on the underlying buffer is checked each time.

Methods

impl<'a> MutPacket<'a>[src]

pub fn as_mut_ptr(&mut self) -> *mut u8[src]

pub fn i32_len(&self) -> Result<i32>[src]

Checks if the underlying buffer meets requirements.

Trait Implementations

impl<'a> TryInto<MutPacket<'a>> for &'a mut Vec<u8>[src]

type Error = Error

impl<'a> TryInto<MutPacket<'a>> for &'a mut [u8][src]

type Error = Error

impl<'a> TryInto<&'a MutPacket<'a>> for &'a MutPacket<'a>[src]

type Error = Error

Auto Trait Implementations

impl<'a> Send for MutPacket<'a>

impl<'a> Sync for MutPacket<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.

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

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