pub struct PrivacySettings {
pub strip_paths: bool,
pub strip_env_vars: bool,
pub exclude_patterns: Vec<String>,
pub exclude_tools: Vec<String>,
}Fields§
§strip_paths: bool§strip_env_vars: bool§exclude_patterns: Vec<String>§exclude_tools: Vec<String>Trait Implementations§
Source§impl Clone for PrivacySettings
impl Clone for PrivacySettings
Source§fn clone(&self) -> PrivacySettings
fn clone(&self) -> PrivacySettings
Returns a duplicate of the value. Read more
1.0.0 · 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 PrivacySettings
impl Debug for PrivacySettings
Source§impl Default for PrivacySettings
impl Default for PrivacySettings
Source§impl<'de> Deserialize<'de> for PrivacySettings
impl<'de> Deserialize<'de> for PrivacySettings
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
Auto Trait Implementations§
impl Freeze for PrivacySettings
impl RefUnwindSafe for PrivacySettings
impl Send for PrivacySettings
impl Sync for PrivacySettings
impl Unpin for PrivacySettings
impl UnwindSafe for PrivacySettings
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