pub enum VoiceError {
Wake(String),
Stt(String),
Tts(String),
Audio(String),
DeviceNotFound(String),
Model(String),
VoiceConfig(String),
NotInitialized(String),
TalkMode(String),
VoiceApi(String),
InvalidFormat(String),
VoiceTimeout(String),
}Expand description
Voice system errors.
Variants§
Wake(String)
Stt(String)
Tts(String)
Audio(String)
DeviceNotFound(String)
Model(String)
VoiceConfig(String)
NotInitialized(String)
TalkMode(String)
VoiceApi(String)
InvalidFormat(String)
VoiceTimeout(String)
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
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 From<VoiceError> for Error
impl From<VoiceError> for Error
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