pub struct NodesConfigGetConfigResponseData {Show 14 fields
pub acme: Option<Box<PbsAcmeField>>,
pub acmedomain0: Option<Box<PbsAcmedomainField>>,
pub acmedomain1: Option<Box<PbsAcmedomainField>>,
pub acmedomain2: Option<Box<PbsAcmedomainField>>,
pub acmedomain3: Option<Box<PbsAcmedomainField>>,
pub acmedomain4: Option<Box<PbsAcmedomainField>>,
pub ciphers_tls_1_2: Option<String>,
pub ciphers_tls_1_3: Option<String>,
pub consent_text: Option<String>,
pub default_lang: Option<PbsDefaultLangEnum>,
pub description: Option<String>,
pub email_from: Option<String>,
pub http_proxy: Option<String>,
pub task_log_max_days: Option<i64>,
}Fields§
§acme: Option<Box<PbsAcmeField>>The acme account to use on this node.
acmedomain0: Option<Box<PbsAcmedomainField>>ACME domain configuration string
acmedomain1: Option<Box<PbsAcmedomainField>>ACME domain configuration string
acmedomain2: Option<Box<PbsAcmedomainField>>ACME domain configuration string
acmedomain3: Option<Box<PbsAcmedomainField>>ACME domain configuration string
acmedomain4: Option<Box<PbsAcmedomainField>>ACME domain configuration string
ciphers_tls_1_2: Option<String>OpenSSL cipher list used by the proxy for TLS <= 1.2
ciphers_tls_1_3: Option<String>OpenSSL ciphersuites list used by the proxy for TLS 1.3
consent_text: Option<String>Consent banner text
default_lang: Option<PbsDefaultLangEnum>All available languages in Proxmox. Taken from proxmox-i18n repository. pt_BR, zh_CN, and zh_TW use the same case in the translation files.
description: Option<String>Comment (multiple lines).
email_from: Option<String>E-Mail Address.
http_proxy: Option<String>HTTP proxy configuration [http://]
task_log_max_days: Option<i64>Maximum days to keep Task logs
Implementations§
Trait Implementations§
Source§impl Clone for NodesConfigGetConfigResponseData
impl Clone for NodesConfigGetConfigResponseData
Source§fn clone(&self) -> NodesConfigGetConfigResponseData
fn clone(&self) -> NodesConfigGetConfigResponseData
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 NodesConfigGetConfigResponseData
impl Default for NodesConfigGetConfigResponseData
Source§fn default() -> NodesConfigGetConfigResponseData
fn default() -> NodesConfigGetConfigResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesConfigGetConfigResponseData
impl<'de> Deserialize<'de> for NodesConfigGetConfigResponseData
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 NodesConfigGetConfigResponseData
impl PartialEq for NodesConfigGetConfigResponseData
Source§fn eq(&self, other: &NodesConfigGetConfigResponseData) -> bool
fn eq(&self, other: &NodesConfigGetConfigResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodesConfigGetConfigResponseData
Auto Trait Implementations§
impl Freeze for NodesConfigGetConfigResponseData
impl RefUnwindSafe for NodesConfigGetConfigResponseData
impl Send for NodesConfigGetConfigResponseData
impl Sync for NodesConfigGetConfigResponseData
impl Unpin for NodesConfigGetConfigResponseData
impl UnsafeUnpin for NodesConfigGetConfigResponseData
impl UnwindSafe for NodesConfigGetConfigResponseData
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