pub enum SoundRenderError {
InvalidSampleRate,
InvalidChannelCount,
BufferTooLarge,
}Expand description
Error raised by sound rendering and WAV encoding.
Variants§
InvalidSampleRate
The sample rate was zero.
InvalidChannelCount
The channel count was neither mono (1) nor stereo (2).
BufferTooLarge
The audio buffer exceeded the size encodable in a WAV header.
Trait Implementations§
Source§impl Clone for SoundRenderError
impl Clone for SoundRenderError
Source§fn clone(&self) -> SoundRenderError
fn clone(&self) -> SoundRenderError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SoundRenderError
impl Debug for SoundRenderError
Source§impl Display for SoundRenderError
impl Display for SoundRenderError
impl Eq for SoundRenderError
Source§impl Error for SoundRenderError
impl Error for SoundRenderError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for SoundRenderError
impl PartialEq for SoundRenderError
Source§fn eq(&self, other: &SoundRenderError) -> bool
fn eq(&self, other: &SoundRenderError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SoundRenderError
Auto Trait Implementations§
impl Freeze for SoundRenderError
impl RefUnwindSafe for SoundRenderError
impl Send for SoundRenderError
impl Sync for SoundRenderError
impl Unpin for SoundRenderError
impl UnsafeUnpin for SoundRenderError
impl UnwindSafe for SoundRenderError
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