Struct fastly_api::models::gzip_response::GzipResponse
source · pub struct GzipResponse {
pub cache_condition: Option<String>,
pub content_types: Option<String>,
pub extensions: Option<String>,
pub name: Option<String>,
pub service_id: Option<Box<String>>,
pub version: Option<Box<String>>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§cache_condition: Option<String>
Name of the cache condition controlling when this configuration applies.
content_types: Option<String>
Space-separated list of content types to compress. If you omit this field a default list will be used.
extensions: Option<String>
Space-separated list of file extensions to compress. If you omit this field a default list will be used.
name: Option<String>
Name of the gzip configuration.
service_id: Option<Box<String>>
§version: Option<Box<String>>
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
Implementations§
source§impl GzipResponse
impl GzipResponse
pub fn new() -> GzipResponse
Trait Implementations§
source§impl Clone for GzipResponse
impl Clone for GzipResponse
source§fn clone(&self) -> GzipResponse
fn clone(&self) -> GzipResponse
Returns a copy 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 GzipResponse
impl Debug for GzipResponse
source§impl Default for GzipResponse
impl Default for GzipResponse
source§fn default() -> GzipResponse
fn default() -> GzipResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GzipResponse
impl<'de> Deserialize<'de> for GzipResponse
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<GzipResponse> for GzipResponse
impl PartialEq<GzipResponse> for GzipResponse
source§fn eq(&self, other: &GzipResponse) -> bool
fn eq(&self, other: &GzipResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GzipResponse
impl Serialize for GzipResponse
impl StructuralPartialEq for GzipResponse
Auto Trait Implementations§
impl RefUnwindSafe for GzipResponse
impl Send for GzipResponse
impl Sync for GzipResponse
impl Unpin for GzipResponse
impl UnwindSafe for GzipResponse
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