pub struct ProviderConfigOptions {
pub api_key: Option<String>,
pub base_url: Option<String>,
pub chunk_timeout: Option<i64>,
pub enterprise_url: Option<String>,
pub header_timeout: Option<ProviderConfigOptionsHeaderTimeout>,
pub set_cache_key: Option<bool>,
pub timeout: Option<ProviderConfigOptionsTimeout>,
}Fields§
§api_key: Option<String>§base_url: Option<String>§chunk_timeout: Option<i64>§enterprise_url: Option<String>§header_timeout: Option<ProviderConfigOptionsHeaderTimeout>§set_cache_key: Option<bool>§timeout: Option<ProviderConfigOptionsTimeout>Trait Implementations§
Source§impl Clone for ProviderConfigOptions
impl Clone for ProviderConfigOptions
Source§fn clone(&self) -> ProviderConfigOptions
fn clone(&self) -> ProviderConfigOptions
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 ProviderConfigOptions
impl Debug for ProviderConfigOptions
Source§impl<'de> Deserialize<'de> for ProviderConfigOptions
impl<'de> Deserialize<'de> for ProviderConfigOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderConfigOptions
impl PartialEq for ProviderConfigOptions
Source§impl Serialize for ProviderConfigOptions
impl Serialize for ProviderConfigOptions
impl StructuralPartialEq for ProviderConfigOptions
Auto Trait Implementations§
impl Freeze for ProviderConfigOptions
impl RefUnwindSafe for ProviderConfigOptions
impl Send for ProviderConfigOptions
impl Sync for ProviderConfigOptions
impl Unpin for ProviderConfigOptions
impl UnsafeUnpin for ProviderConfigOptions
impl UnwindSafe for ProviderConfigOptions
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