pub struct ConfigSupportSettings {
pub terms_of_service_link: Option<String>,
pub privacy_policy_link: Option<String>,
pub about_link: Option<String>,
pub help_link: Option<String>,
pub report_a_problem_link: Option<String>,
pub support_email: Option<String>,
}
Fields§
§terms_of_service_link: Option<String>
§privacy_policy_link: Option<String>
§about_link: Option<String>
§help_link: Option<String>
§report_a_problem_link: Option<String>
§support_email: Option<String>
Implementations§
Source§impl ConfigSupportSettings
impl ConfigSupportSettings
pub fn new() -> ConfigSupportSettings
Trait Implementations§
Source§impl Clone for ConfigSupportSettings
impl Clone for ConfigSupportSettings
Source§fn clone(&self) -> ConfigSupportSettings
fn clone(&self) -> ConfigSupportSettings
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 Debug for ConfigSupportSettings
impl Debug for ConfigSupportSettings
Source§impl Default for ConfigSupportSettings
impl Default for ConfigSupportSettings
Source§fn default() -> ConfigSupportSettings
fn default() -> ConfigSupportSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigSupportSettings
impl<'de> Deserialize<'de> for ConfigSupportSettings
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 ConfigSupportSettings
impl PartialEq for ConfigSupportSettings
Source§impl Serialize for ConfigSupportSettings
impl Serialize for ConfigSupportSettings
impl StructuralPartialEq for ConfigSupportSettings
Auto Trait Implementations§
impl Freeze for ConfigSupportSettings
impl RefUnwindSafe for ConfigSupportSettings
impl Send for ConfigSupportSettings
impl Sync for ConfigSupportSettings
impl Unpin for ConfigSupportSettings
impl UnwindSafe for ConfigSupportSettings
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