pub struct Gz(pub u32);
Tuple Fields§
§0: u32
Trait Implementations§
Source§impl<R, W> Compression<R, W> for Gz
impl<R, W> Compression<R, W> for Gz
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 Gz
impl RefUnwindSafe for Gz
impl Send for Gz
impl Sync for Gz
impl Unpin for Gz
impl UnwindSafe for Gz
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