pub enum SoundRenderError {
InvalidSampleRate,
InvalidChannelCount,
ChannelMisalignedSamples,
BufferTooLarge,
TimbrePreviewRejected,
EmptyTimbrePreview,
}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).
ChannelMisalignedSamples
The sample buffer length was not divisible by the renderer channel count.
BufferTooLarge
The audio buffer exceeded the size encodable in a WAV header.
TimbrePreviewRejected
The timbre policy rejected the requested preview pitch.
EmptyTimbrePreview
The timbre did not yield any renderable partials.
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
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