darkwing::database::browser_profile::model

Struct BrowserProfileWithFingerprint

source
pub struct BrowserProfileWithFingerprint {
Show 51 fields pub id: u64, pub user_id: i64, pub team_id: i64, pub name: String, pub main_website: String, pub platform: String, pub browser_type: String, pub proxy_id: i64, pub useragent: String, pub webrtc: String, pub canvas: String, pub webgl: String, pub webgl_info: String, pub client_rect: String, pub notes: String, pub timezone: String, pub locale: String, pub user_fields: String, pub geolocation: String, pub do_not_track: i8, pub args: String, pub cpu: String, pub memory: String, pub screen: String, pub ports: String, pub tabs: String, pub deleted_at: Option<OffsetDateTime>, pub cpu_architecture: String, pub os_version: String, pub screen_width: Option<i32>, pub screen_height: Option<i32>, pub connection_downlink: f64, pub connection_effective_type: String, pub connection_rtt: u32, pub connection_save_data: i8, pub vendor_sub: String, pub product_sub: String, pub vendor: String, pub product: String, pub app_code_name: String, pub media_devices: JsonValue, pub datadir_hash: Option<String>, pub platform_version: String, pub archived: i8, pub webgl2_maximum: Option<JsonValue>, pub login: Option<String>, pub password: Option<String>, pub browser_profile_tabs: Option<String>, pub webgpu: Option<JsonValue>, pub is_hidden_profile_name: Option<bool>, pub created_at: OffsetDateTime,
}
Expand description

Represents a browser profile with fingerprint settings

Fields§

§id: u64

Unique identifier for the browser profile

§user_id: i64

ID of the user this profile belongs to

§team_id: i64

ID of the team this profile belongs to

§name: String

Name of the browser profile

§main_website: String

Main website category this profile is configured for

§platform: String

Operating system platform this profile is configured for

§browser_type: String

Type of the browser this profile is configured for

§proxy_id: i64

ID of the proxy this profile is configured for

§useragent: String

User-agent string for the browser profile

§webrtc: String

WebRTC configuration for the browser profile

§canvas: String

Canvas fingerprinting settings for the browser profile

§webgl: String

WebGL fingerprinting settings for the browser profile

§webgl_info: String

Detailed WebGL information for the browser profile

§client_rect: String

Client rectangle information for the browser profile

§notes: String

Notes for the browser profile

§timezone: String

Timezone for the browser profile

§locale: String

Locale for the browser profile

§user_fields: String

User-defined fields for the browser profile

§geolocation: String

Geolocation settings for the browser profile

§do_not_track: i8

Do-not-track setting for the browser profile

§args: String

Additional arguments for the browser profile

§cpu: String

CPU information for the browser profile

§memory: String

Memory information for the browser profile

§screen: String

Screen information for the browser profile

§ports: String

Ports information for the browser profile

§tabs: String

Tabs information for the browser profile

§deleted_at: Option<OffsetDateTime>

When the browser profile was deleted

§cpu_architecture: String

CPU architecture for the browser profile

§os_version: String

Operating system version for the browser profile

§screen_width: Option<i32>

Screen width for the browser profile

§screen_height: Option<i32>

Screen height for the browser profile

§connection_downlink: f64

Download speed for the browser profile

§connection_effective_type: String

Effective type of the connection for the browser profile

§connection_rtt: u32

Round-trip time for the browser profile

§connection_save_data: i8

Whether data saving is enabled for the browser profile’s connection

§vendor_sub: String

The vendor sub-version string for the browser profile

§product_sub: String

The product sub-version string for the browser profile

§vendor: String

The vendor name for the browser profile

§product: String

The product name for the browser profile

§app_code_name: String

The application code name for the browser profile

§media_devices: JsonValue

Information about available media devices for the browser profile

§datadir_hash: Option<String>

Hash of the data directory for the browser profile

§platform_version: String

Version of the platform for the browser profile

§archived: i8

Whether the browser profile is archived (1) or not (0)

§webgl2_maximum: Option<JsonValue>

Maximum WebGL2 capabilities for the browser profile

§login: Option<String>

Optional login credentials for the browser profile

§password: Option<String>

Optional password for the browser profile

§browser_profile_tabs: Option<String>

Optional tab configuration for the browser profile

§webgpu: Option<JsonValue>

WebGPU capabilities for the browser profile

§is_hidden_profile_name: Option<bool>

Whether the profile name is hidden in the UI

§created_at: OffsetDateTime

When the browser profile was created

Trait Implementations§

source§

impl Debug for BrowserProfileWithFingerprint

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<BrowserProfileWithFingerprint> for MiniBrowserProfile

source§

fn from(browser_profile: BrowserProfileWithFingerprint) -> Self

Creates a minimal profile from a full profile with fingerprint data

source§

impl<'a, R: Row> FromRow<'a, R> for BrowserProfileWithFingerprint
where &'a str: ColumnIndex<R>, u64: Decode<'a, R::Database> + Type<R::Database>, i64: Decode<'a, R::Database> + Type<R::Database>, String: Decode<'a, R::Database> + Type<R::Database>, i8: Decode<'a, R::Database> + Type<R::Database>, Option<OffsetDateTime>: Decode<'a, R::Database> + Type<R::Database>, Option<i32>: Decode<'a, R::Database> + Type<R::Database>, f64: Decode<'a, R::Database> + Type<R::Database>, u32: Decode<'a, R::Database> + Type<R::Database>, JsonValue: Decode<'a, R::Database> + Type<R::Database>, Option<String>: Decode<'a, R::Database> + Type<R::Database>, Option<JsonValue>: Decode<'a, R::Database> + Type<R::Database>, Option<bool>: Decode<'a, R::Database> + Type<R::Database>, OffsetDateTime: Decode<'a, R::Database> + Type<R::Database>,

source§

fn from_row(__row: &'a R) -> Result<Self>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Any for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

§

fn type_name(&self) -> &'static str

§

impl<T> AnySync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
§

impl<T> LayoutRaw for T

§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Pointee for T

§

type Metadata = ()

The metadata type for pointers and references to this type.
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more