pub struct ClientOptions {
pub source: String,
pub model: String,
pub resol: String,
pub beta: bool,
pub preserve_request_order: bool,
pub infer_stream_keyword: bool,
pub verify_tls: bool,
pub use_sas_token: Option<bool>,
pub sas_known_key: String,
pub sas_custom_url: Option<String>,
}Fields§
§source: String§model: String§resol: String§beta: bool§preserve_request_order: bool§infer_stream_keyword: bool§verify_tls: bool§use_sas_token: Option<bool>§sas_known_key: String§sas_custom_url: Option<String>Trait Implementations§
Source§impl Clone for ClientOptions
impl Clone for ClientOptions
Source§fn clone(&self) -> ClientOptions
fn clone(&self) -> ClientOptions
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 moreSource§impl Debug for ClientOptions
impl Debug for ClientOptions
Auto Trait Implementations§
impl Freeze for ClientOptions
impl RefUnwindSafe for ClientOptions
impl Send for ClientOptions
impl Sync for ClientOptions
impl Unpin for ClientOptions
impl UnwindSafe for ClientOptions
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