pub enum AudioResponseFormat {
Json,
Text,
Srt,
VerboseJson,
Vtt,
Other(String),
}
Expand description
The format of the output, in one of these options: json
, text
, srt
,
verbose_json
, or vtt
.
Variants§
Trait Implementations§
Source§impl Clone for AudioResponseFormat
impl Clone for AudioResponseFormat
Source§fn clone(&self) -> AudioResponseFormat
fn clone(&self) -> AudioResponseFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for AudioResponseFormat
impl RefUnwindSafe for AudioResponseFormat
impl Send for AudioResponseFormat
impl Sync for AudioResponseFormat
impl Unpin for AudioResponseFormat
impl UnwindSafe for AudioResponseFormat
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