pub struct EnvironmentConfigSupportSettings {
pub terms_of_service_link: Option<bool>,
pub privacy_policy_link: Option<bool>,
pub about_link: Option<bool>,
pub help_link: Option<bool>,
pub report_a_problem_link: Option<bool>,
pub support_email: Option<bool>,
}
Fields§
§terms_of_service_link: Option<bool>
§privacy_policy_link: Option<bool>
§about_link: Option<bool>
§help_link: Option<bool>
§report_a_problem_link: Option<bool>
§support_email: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for EnvironmentConfigSupportSettings
impl Clone for EnvironmentConfigSupportSettings
Source§fn clone(&self) -> EnvironmentConfigSupportSettings
fn clone(&self) -> EnvironmentConfigSupportSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for EnvironmentConfigSupportSettings
impl Default for EnvironmentConfigSupportSettings
Source§fn default() -> EnvironmentConfigSupportSettings
fn default() -> EnvironmentConfigSupportSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentConfigSupportSettings
impl<'de> Deserialize<'de> for EnvironmentConfigSupportSettings
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 EnvironmentConfigSupportSettings
impl PartialEq for EnvironmentConfigSupportSettings
Source§fn eq(&self, other: &EnvironmentConfigSupportSettings) -> bool
fn eq(&self, other: &EnvironmentConfigSupportSettings) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EnvironmentConfigSupportSettings
Auto Trait Implementations§
impl Freeze for EnvironmentConfigSupportSettings
impl RefUnwindSafe for EnvironmentConfigSupportSettings
impl Send for EnvironmentConfigSupportSettings
impl Sync for EnvironmentConfigSupportSettings
impl Unpin for EnvironmentConfigSupportSettings
impl UnwindSafe for EnvironmentConfigSupportSettings
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