pub enum ProviderConfigOptionsHeaderTimeout {
Variant0(i64),
Variant1(bool),
}Expand description
Timeout in milliseconds to wait for response headers. Provider integrations may set defaults. Set to false to disable timeout. Untagged union: serde tries each variant in the order below.
Variants§
Trait Implementations§
Source§impl Clone for ProviderConfigOptionsHeaderTimeout
impl Clone for ProviderConfigOptionsHeaderTimeout
Source§fn clone(&self) -> ProviderConfigOptionsHeaderTimeout
fn clone(&self) -> ProviderConfigOptionsHeaderTimeout
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<'de> Deserialize<'de> for ProviderConfigOptionsHeaderTimeout
impl<'de> Deserialize<'de> for ProviderConfigOptionsHeaderTimeout
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
impl StructuralPartialEq for ProviderConfigOptionsHeaderTimeout
Auto Trait Implementations§
impl Freeze for ProviderConfigOptionsHeaderTimeout
impl RefUnwindSafe for ProviderConfigOptionsHeaderTimeout
impl Send for ProviderConfigOptionsHeaderTimeout
impl Sync for ProviderConfigOptionsHeaderTimeout
impl Unpin for ProviderConfigOptionsHeaderTimeout
impl UnsafeUnpin for ProviderConfigOptionsHeaderTimeout
impl UnwindSafe for ProviderConfigOptionsHeaderTimeout
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