Enum wavify::WavifyError
source · pub enum WavifyError {
InitError,
InferenceError,
}Expand description
Represents possible errors that can occur during the speech-to-text process.
Variants§
InitError
Error that occurs during initialization of the STT engine.
InferenceError
Error that occurs during inference.
Trait Implementations§
source§impl Debug for WavifyError
impl Debug for WavifyError
source§impl Display for WavifyError
impl Display for WavifyError
source§impl Error for WavifyError
impl Error for WavifyError
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()
Auto Trait Implementations§
impl Freeze for WavifyError
impl RefUnwindSafe for WavifyError
impl Send for WavifyError
impl Sync for WavifyError
impl Unpin for WavifyError
impl UnwindSafe for WavifyError
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