pub enum VoiceError {
Io(Error),
Ron(SpannedError),
NotFound(VoiceId),
}Variants§
Trait Implementations§
Source§impl Debug for VoiceError
impl Debug for VoiceError
Source§impl Display for VoiceError
impl Display for VoiceError
Source§impl Error for VoiceError
impl Error for VoiceError
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 From<Error> for VoiceError
impl From<Error> for VoiceError
Source§impl From<SpannedError> for VoiceError
impl From<SpannedError> for VoiceError
Source§fn from(source: SpannedError) -> Self
fn from(source: SpannedError) -> Self
Converts to this type from the input type.
Source§impl From<VoiceError> for PipelineError
impl From<VoiceError> for PipelineError
Source§fn from(source: VoiceError) -> Self
fn from(source: VoiceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VoiceError
impl !RefUnwindSafe for VoiceError
impl Send for VoiceError
impl Sync for VoiceError
impl Unpin for VoiceError
impl UnsafeUnpin for VoiceError
impl !UnwindSafe for VoiceError
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