pub struct PoolResponseCommon {
pub between_bytes_timeout: Option<String>,
pub connect_timeout: Option<String>,
pub first_byte_timeout: Option<String>,
pub max_conn_default: Option<String>,
pub tls_check_cert: Option<String>,
pub id: Option<Box<String>>,
}
Fields§
§between_bytes_timeout: Option<String>
Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using bereq.between_bytes_timeout
.
connect_timeout: Option<String>
How long to wait for a timeout in milliseconds.
first_byte_timeout: Option<String>
How long to wait for the first byte in milliseconds.
max_conn_default: Option<String>
Maximum number of connections.
tls_check_cert: Option<String>
Be strict on checking TLS certs.
id: Option<Box<String>>
Implementations§
Source§impl PoolResponseCommon
impl PoolResponseCommon
pub fn new() -> PoolResponseCommon
Trait Implementations§
Source§impl Clone for PoolResponseCommon
impl Clone for PoolResponseCommon
Source§fn clone(&self) -> PoolResponseCommon
fn clone(&self) -> PoolResponseCommon
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 PoolResponseCommon
impl Debug for PoolResponseCommon
Source§impl Default for PoolResponseCommon
impl Default for PoolResponseCommon
Source§fn default() -> PoolResponseCommon
fn default() -> PoolResponseCommon
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PoolResponseCommon
impl<'de> Deserialize<'de> for PoolResponseCommon
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 PoolResponseCommon
impl PartialEq for PoolResponseCommon
Source§impl Serialize for PoolResponseCommon
impl Serialize for PoolResponseCommon
impl StructuralPartialEq for PoolResponseCommon
Auto Trait Implementations§
impl Freeze for PoolResponseCommon
impl RefUnwindSafe for PoolResponseCommon
impl Send for PoolResponseCommon
impl Sync for PoolResponseCommon
impl Unpin for PoolResponseCommon
impl UnwindSafe for PoolResponseCommon
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