pub struct GraphicsFingerprint {
pub webgl_vendor: String,
pub webgl_renderer: String,
pub webgl_masked_vendor: String,
pub webgl_masked_renderer: String,
pub webgl_seed: PersonaSeed,
}Expand description
Resolved WebGL and graphics fingerprint values.
Fields§
§webgl_vendor: String§webgl_renderer: String§webgl_masked_vendor: String§webgl_masked_renderer: String§webgl_seed: PersonaSeedTrait Implementations§
Source§impl Clone for GraphicsFingerprint
impl Clone for GraphicsFingerprint
Source§fn clone(&self) -> GraphicsFingerprint
fn clone(&self) -> GraphicsFingerprint
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 GraphicsFingerprint
impl Debug for GraphicsFingerprint
Source§impl<'de> Deserialize<'de> for GraphicsFingerprint
impl<'de> Deserialize<'de> for GraphicsFingerprint
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 GraphicsFingerprint
impl PartialEq for GraphicsFingerprint
Source§fn eq(&self, other: &GraphicsFingerprint) -> bool
fn eq(&self, other: &GraphicsFingerprint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphicsFingerprint
impl Serialize for GraphicsFingerprint
impl Eq for GraphicsFingerprint
impl StructuralPartialEq for GraphicsFingerprint
Auto Trait Implementations§
impl Freeze for GraphicsFingerprint
impl RefUnwindSafe for GraphicsFingerprint
impl Send for GraphicsFingerprint
impl Sync for GraphicsFingerprint
impl Unpin for GraphicsFingerprint
impl UnsafeUnpin for GraphicsFingerprint
impl UnwindSafe for GraphicsFingerprint
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