pub struct VersionDetail {Show 14 fields
pub backends: Option<Vec<BackendResponse>>,
pub cache_settings: Option<Vec<CacheSettingResponse>>,
pub conditions: Option<Vec<ConditionResponse>>,
pub directors: Option<Vec<Director>>,
pub domains: Option<Vec<DomainResponse>>,
pub gzips: Option<Vec<GzipResponse>>,
pub headers: Option<Vec<HeaderResponse>>,
pub healthchecks: Option<Vec<HealthcheckResponse>>,
pub request_settings: Option<Vec<RequestSettingsResponse>>,
pub response_objects: Option<Vec<ResponseObjectResponse>>,
pub settings: Option<Box<VersionDetailSettings>>,
pub snippets: Option<Vec<SchemasSnippetResponse>>,
pub vcls: Option<Vec<SchemasVclResponse>>,
pub wordpress: Option<Vec<Value>>,
}
Fields§
§backends: Option<Vec<BackendResponse>>
List of backends associated to this service.
cache_settings: Option<Vec<CacheSettingResponse>>
List of cache settings associated to this service.
conditions: Option<Vec<ConditionResponse>>
List of conditions associated to this service.
directors: Option<Vec<Director>>
List of directors associated to this service.
domains: Option<Vec<DomainResponse>>
List of domains associated to this service.
gzips: Option<Vec<GzipResponse>>
List of gzip rules associated to this service.
headers: Option<Vec<HeaderResponse>>
List of headers associated to this service.
healthchecks: Option<Vec<HealthcheckResponse>>
List of healthchecks associated to this service.
request_settings: Option<Vec<RequestSettingsResponse>>
List of request settings for this service.
response_objects: Option<Vec<ResponseObjectResponse>>
List of response objects for this service.
settings: Option<Box<VersionDetailSettings>>
§snippets: Option<Vec<SchemasSnippetResponse>>
List of VCL snippets for this service.
vcls: Option<Vec<SchemasVclResponse>>
List of VCL files for this service.
wordpress: Option<Vec<Value>>
A list of Wordpress rules with this service.
Implementations§
Source§impl VersionDetail
impl VersionDetail
pub fn new() -> VersionDetail
Trait Implementations§
Source§impl Clone for VersionDetail
impl Clone for VersionDetail
Source§fn clone(&self) -> VersionDetail
fn clone(&self) -> VersionDetail
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 VersionDetail
impl Debug for VersionDetail
Source§impl Default for VersionDetail
impl Default for VersionDetail
Source§fn default() -> VersionDetail
fn default() -> VersionDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VersionDetail
impl<'de> Deserialize<'de> for VersionDetail
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 VersionDetail
impl PartialEq for VersionDetail
Source§impl Serialize for VersionDetail
impl Serialize for VersionDetail
impl StructuralPartialEq for VersionDetail
Auto Trait Implementations§
impl Freeze for VersionDetail
impl RefUnwindSafe for VersionDetail
impl Send for VersionDetail
impl Sync for VersionDetail
impl Unpin for VersionDetail
impl UnwindSafe for VersionDetail
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