pub struct AudioClientSettings { /* private fields */ }Expand description
Tuning knobs for audio transcription requests.
Use the chainable setter methods to configure, e.g.:
ⓘ
let client = model.create_audio_client()
.language("en")
.temperature(0.2);Trait Implementations§
Source§impl Clone for AudioClientSettings
impl Clone for AudioClientSettings
Source§fn clone(&self) -> AudioClientSettings
fn clone(&self) -> AudioClientSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AudioClientSettings
impl Debug for AudioClientSettings
Source§impl Default for AudioClientSettings
impl Default for AudioClientSettings
Source§fn default() -> AudioClientSettings
fn default() -> AudioClientSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AudioClientSettings
impl RefUnwindSafe for AudioClientSettings
impl Send for AudioClientSettings
impl Sync for AudioClientSettings
impl Unpin for AudioClientSettings
impl UnsafeUnpin for AudioClientSettings
impl UnwindSafe for AudioClientSettings
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