pub struct RecordingHandle { /* private fields */ }Expand description
Handle to an active recording.
Call finish() to stop recording and retrieve the audio data.
If dropped without calling finish(), the recording will be finalized
but you won’t be able to retrieve the data.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecordingHandle
impl !RefUnwindSafe for RecordingHandle
impl !Send for RecordingHandle
impl !Sync for RecordingHandle
impl Unpin for RecordingHandle
impl !UnwindSafe for RecordingHandle
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