pub struct SchemasVclResponse {
pub content: Option<String>,
pub main: Option<bool>,
pub name: Option<String>,
pub service_id: Option<Box<String>>,
pub version: Option<Box<i32>>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§content: Option<String>
The VCL code to be included.
main: Option<bool>
Set to true
when this is the main VCL, otherwise false
.
name: Option<String>
The name of this VCL.
service_id: Option<Box<String>>
§version: Option<Box<i32>>
§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 SchemasVclResponse
impl SchemasVclResponse
pub fn new() -> SchemasVclResponse
Trait Implementations§
Source§impl Clone for SchemasVclResponse
impl Clone for SchemasVclResponse
Source§fn clone(&self) -> SchemasVclResponse
fn clone(&self) -> SchemasVclResponse
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 SchemasVclResponse
impl Debug for SchemasVclResponse
Source§impl Default for SchemasVclResponse
impl Default for SchemasVclResponse
Source§fn default() -> SchemasVclResponse
fn default() -> SchemasVclResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SchemasVclResponse
impl<'de> Deserialize<'de> for SchemasVclResponse
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 SchemasVclResponse
impl PartialEq for SchemasVclResponse
Source§impl Serialize for SchemasVclResponse
impl Serialize for SchemasVclResponse
impl StructuralPartialEq for SchemasVclResponse
Auto Trait Implementations§
impl Freeze for SchemasVclResponse
impl RefUnwindSafe for SchemasVclResponse
impl Send for SchemasVclResponse
impl Sync for SchemasVclResponse
impl Unpin for SchemasVclResponse
impl UnwindSafe for SchemasVclResponse
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