pub enum TTSError {
ContainsNull,
Code(i32),
}
Expand description
A enum containg all errors that TTS can return
Variants§
ContainsNull
the string you passed contains a null, dont do that
Code(i32)
error id from the libSAM, will mabey split this into values l8r
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TTSError
impl RefUnwindSafe for TTSError
impl Send for TTSError
impl Sync for TTSError
impl Unpin for TTSError
impl UnwindSafe for TTSError
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