pub struct ClusterAcmeGetMetaResponseData {
pub caa_identities: Option<Vec<String>>,
pub external_account_required: Option<PveBoolean>,
pub terms_of_service: Option<String>,
pub website: Option<String>,
}Fields§
§caa_identities: Option<Vec<String>>Hostnames referring to the ACME servers.
external_account_required: Option<PveBoolean>EAB Required
terms_of_service: Option<String>ACME TermsOfService URL.
website: Option<String>URL to more information about the ACME server.
Implementations§
Trait Implementations§
Source§impl Clone for ClusterAcmeGetMetaResponseData
impl Clone for ClusterAcmeGetMetaResponseData
Source§fn clone(&self) -> ClusterAcmeGetMetaResponseData
fn clone(&self) -> ClusterAcmeGetMetaResponseData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClusterAcmeGetMetaResponseData
impl Default for ClusterAcmeGetMetaResponseData
Source§fn default() -> ClusterAcmeGetMetaResponseData
fn default() -> ClusterAcmeGetMetaResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterAcmeGetMetaResponseData
impl<'de> Deserialize<'de> for ClusterAcmeGetMetaResponseData
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 ClusterAcmeGetMetaResponseData
impl PartialEq for ClusterAcmeGetMetaResponseData
Source§fn eq(&self, other: &ClusterAcmeGetMetaResponseData) -> bool
fn eq(&self, other: &ClusterAcmeGetMetaResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterAcmeGetMetaResponseData
Auto Trait Implementations§
impl Freeze for ClusterAcmeGetMetaResponseData
impl RefUnwindSafe for ClusterAcmeGetMetaResponseData
impl Send for ClusterAcmeGetMetaResponseData
impl Sync for ClusterAcmeGetMetaResponseData
impl Unpin for ClusterAcmeGetMetaResponseData
impl UnsafeUnpin for ClusterAcmeGetMetaResponseData
impl UnwindSafe for ClusterAcmeGetMetaResponseData
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