pub struct None;
Trait Implementations§
Source§impl<R, W> Compression<R, W> for None
impl<R, W> Compression<R, W> for None
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 None
impl RefUnwindSafe for None
impl Send for None
impl Sync for None
impl Unpin for None
impl UnwindSafe for None
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