pub struct DomRectConfig {
pub enabled: Option<bool>,
pub quantization_steps_per_px: Option<u32>,
pub fill_empty_client_rects: Option<bool>,
pub seed: Option<PersonaSeed>,
}Expand description
Optional DOMRect/SVGRect fingerprint behavior overrides.
Fields§
§enabled: Option<bool>§quantization_steps_per_px: Option<u32>§fill_empty_client_rects: Option<bool>§seed: Option<PersonaSeed>Trait Implementations§
Source§impl Clone for DomRectConfig
impl Clone for DomRectConfig
Source§fn clone(&self) -> DomRectConfig
fn clone(&self) -> DomRectConfig
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 DomRectConfig
impl Debug for DomRectConfig
Source§impl Default for DomRectConfig
impl Default for DomRectConfig
Source§fn default() -> DomRectConfig
fn default() -> DomRectConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomRectConfig
impl<'de> Deserialize<'de> for DomRectConfig
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 DomRectConfig
impl PartialEq for DomRectConfig
Source§fn eq(&self, other: &DomRectConfig) -> bool
fn eq(&self, other: &DomRectConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DomRectConfig
impl Serialize for DomRectConfig
impl Eq for DomRectConfig
impl StructuralPartialEq for DomRectConfig
Auto Trait Implementations§
impl Freeze for DomRectConfig
impl RefUnwindSafe for DomRectConfig
impl Send for DomRectConfig
impl Sync for DomRectConfig
impl Unpin for DomRectConfig
impl UnsafeUnpin for DomRectConfig
impl UnwindSafe for DomRectConfig
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