pub struct PrivacyMode {
pub enabled: bool,
pub redact_emails: bool,
pub redact_bodies: bool,
pub redact_names: bool,
}Expand description
Privacy mode configuration.
Fields§
§enabled: boolEnable privacy mode
redact_emails: boolRedact email addresses
redact_bodies: boolRedact message bodies
redact_names: boolRedact participant names
Trait Implementations§
Source§impl Clone for PrivacyMode
impl Clone for PrivacyMode
Source§fn clone(&self) -> PrivacyMode
fn clone(&self) -> PrivacyMode
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 Debug for PrivacyMode
impl Debug for PrivacyMode
Source§impl Default for PrivacyMode
impl Default for PrivacyMode
Source§fn default() -> PrivacyMode
fn default() -> PrivacyMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivacyMode
impl<'de> Deserialize<'de> for PrivacyMode
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
impl Eq for PrivacyMode
Source§impl PartialEq for PrivacyMode
impl PartialEq for PrivacyMode
Source§fn eq(&self, other: &PrivacyMode) -> bool
fn eq(&self, other: &PrivacyMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivacyMode
impl Serialize for PrivacyMode
impl StructuralPartialEq for PrivacyMode
Auto Trait Implementations§
impl Freeze for PrivacyMode
impl RefUnwindSafe for PrivacyMode
impl Send for PrivacyMode
impl Sync for PrivacyMode
impl Unpin for PrivacyMode
impl UnsafeUnpin for PrivacyMode
impl UnwindSafe for PrivacyMode
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