pub struct RequestSettingsResponseAllOf {
pub bypass_busy_wait: Option<String>,
pub force_miss: Option<String>,
pub force_ssl: Option<String>,
pub geo_headers: Option<String>,
pub max_stale_age: Option<String>,
pub timer_support: Option<String>,
}
Fields§
§bypass_busy_wait: Option<String>
Disable collapsed forwarding, so you don’t wait for other objects to origin.
force_miss: Option<String>
Allows you to force a cache miss for the request. Replaces the item in the cache if the content is cacheable.
force_ssl: Option<String>
Forces the request use SSL (redirects a non-SSL to SSL).
geo_headers: Option<String>
Injects Fastly-Geo-Country, Fastly-Geo-City, and Fastly-Geo-Region into the request headers.
max_stale_age: Option<String>
How old an object is allowed to be to serve stale-if-error or stale-while-revalidate.
timer_support: Option<String>
Injects the X-Timer info into the request for viewing origin fetch durations.
Implementations§
Source§impl RequestSettingsResponseAllOf
impl RequestSettingsResponseAllOf
pub fn new() -> RequestSettingsResponseAllOf
Trait Implementations§
Source§impl Clone for RequestSettingsResponseAllOf
impl Clone for RequestSettingsResponseAllOf
Source§fn clone(&self) -> RequestSettingsResponseAllOf
fn clone(&self) -> RequestSettingsResponseAllOf
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 RequestSettingsResponseAllOf
impl Debug for RequestSettingsResponseAllOf
Source§impl Default for RequestSettingsResponseAllOf
impl Default for RequestSettingsResponseAllOf
Source§fn default() -> RequestSettingsResponseAllOf
fn default() -> RequestSettingsResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RequestSettingsResponseAllOf
impl<'de> Deserialize<'de> for RequestSettingsResponseAllOf
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 RequestSettingsResponseAllOf
impl PartialEq for RequestSettingsResponseAllOf
Source§fn eq(&self, other: &RequestSettingsResponseAllOf) -> bool
fn eq(&self, other: &RequestSettingsResponseAllOf) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RequestSettingsResponseAllOf
Auto Trait Implementations§
impl Freeze for RequestSettingsResponseAllOf
impl RefUnwindSafe for RequestSettingsResponseAllOf
impl Send for RequestSettingsResponseAllOf
impl Sync for RequestSettingsResponseAllOf
impl Unpin for RequestSettingsResponseAllOf
impl UnwindSafe for RequestSettingsResponseAllOf
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