pub struct SuccessfulResponseAsObjectAllOf {
pub id: Option<String>,
pub fqdn: Option<String>,
pub service_id: Option<String>,
pub description: Option<String>,
pub activated: Option<bool>,
pub verified: Option<bool>,
}Fields§
§id: Option<String>Domain Identifier (UUID).
fqdn: Option<String>The fully-qualified domain name for your domain. Can be created, but not updated.
service_id: Option<String>The service_id associated with your domain or null if there is no association.
description: Option<String>A freeform descriptive note.
activated: Option<bool>Denotes if the domain has at least one TLS activation or not.
verified: Option<bool>Denotes that the customer has proven ownership over the domain by obtaining a Fastly-managed TLS certificate for it or by providing a their own TLS certificate from a publicly-trusted CA that includes the domain or matching wildcard.
Implementations§
Trait Implementations§
Source§impl Clone for SuccessfulResponseAsObjectAllOf
impl Clone for SuccessfulResponseAsObjectAllOf
Source§fn clone(&self) -> SuccessfulResponseAsObjectAllOf
fn clone(&self) -> SuccessfulResponseAsObjectAllOf
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 Default for SuccessfulResponseAsObjectAllOf
impl Default for SuccessfulResponseAsObjectAllOf
Source§fn default() -> SuccessfulResponseAsObjectAllOf
fn default() -> SuccessfulResponseAsObjectAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuccessfulResponseAsObjectAllOf
impl<'de> Deserialize<'de> for SuccessfulResponseAsObjectAllOf
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 SuccessfulResponseAsObjectAllOf
impl PartialEq for SuccessfulResponseAsObjectAllOf
Source§fn eq(&self, other: &SuccessfulResponseAsObjectAllOf) -> bool
fn eq(&self, other: &SuccessfulResponseAsObjectAllOf) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SuccessfulResponseAsObjectAllOf
Auto Trait Implementations§
impl Freeze for SuccessfulResponseAsObjectAllOf
impl RefUnwindSafe for SuccessfulResponseAsObjectAllOf
impl Send for SuccessfulResponseAsObjectAllOf
impl Sync for SuccessfulResponseAsObjectAllOf
impl Unpin for SuccessfulResponseAsObjectAllOf
impl UnwindSafe for SuccessfulResponseAsObjectAllOf
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