pub struct Lz4(pub u32);
Tuple Fields§
§0: u32
Trait Implementations§
Source§impl<R, W> Compression<R, W> for Lz4
impl<R, W> Compression<R, W> for Lz4
Source§fn compress(
&self,
reader: &mut R,
writer: &mut W,
) -> PortableAudioLibraryResult<()>
fn compress( &self, reader: &mut R, writer: &mut W, ) -> PortableAudioLibraryResult<()>
Compresses the audio data from the reader to the writer.
Source§fn decompress(
&self,
reader: &mut R,
writer: &mut W,
) -> PortableAudioLibraryResult<()>
fn decompress( &self, reader: &mut R, writer: &mut W, ) -> PortableAudioLibraryResult<()>
Decompresses the audio data from the reader to the writer.
Auto Trait Implementations§
impl Freeze for Lz4
impl RefUnwindSafe for Lz4
impl Send for Lz4
impl Sync for Lz4
impl Unpin for Lz4
impl UnwindSafe for Lz4
Blanket Implementations§
Source§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