pub enum SpeechOutput {
Default,
Stream(AudioStream),
}Expand description
Specifies where the output of speech synthesis should go.
Variants§
Default
Output to the default audio device on the system
Stream(AudioStream)
Write to the given stream
Auto Trait Implementations§
impl Freeze for SpeechOutput
impl RefUnwindSafe for SpeechOutput
impl Send for SpeechOutput
impl Sync for SpeechOutput
impl Unpin for SpeechOutput
impl UnwindSafe for SpeechOutput
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