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: u64Unique identifier for the browser profile
user_id: i64ID of the user this profile belongs to
team_id: i64ID of the team this profile belongs to
name: StringName of the browser profile
main_website: StringMain website category this profile is configured for
platform: StringOperating system platform this profile is configured for
browser_type: StringType of the browser this profile is configured for
proxy_id: i64ID of the proxy this profile is configured for
useragent: StringUser-agent string for the browser profile
webrtc: StringWebRTC configuration for the browser profile
canvas: StringCanvas fingerprinting settings for the browser profile
webgl: StringWebGL fingerprinting settings for the browser profile
webgl_info: StringDetailed WebGL information for the browser profile
client_rect: StringClient rectangle information for the browser profile
notes: StringNotes for the browser profile
timezone: StringTimezone for the browser profile
locale: StringLocale for the browser profile
user_fields: StringUser-defined fields for the browser profile
geolocation: StringGeolocation settings for the browser profile
do_not_track: i8Do-not-track setting for the browser profile
args: StringAdditional arguments for the browser profile
cpu: StringCPU information for the browser profile
memory: StringMemory information for the browser profile
screen: StringScreen information for the browser profile
ports: StringPorts information for the browser profile
tabs: StringTabs information for the browser profile
deleted_at: Option<OffsetDateTime>When the browser profile was deleted
cpu_architecture: StringCPU architecture for the browser profile
os_version: StringOperating 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: f64Download speed for the browser profile
connection_effective_type: StringEffective type of the connection for the browser profile
connection_rtt: u32Round-trip time for the browser profile
connection_save_data: i8Whether data saving is enabled for the browser profile’s connection
vendor_sub: StringThe vendor sub-version string for the browser profile
product_sub: StringThe product sub-version string for the browser profile
vendor: StringThe vendor name for the browser profile
product: StringThe product name for the browser profile
app_code_name: StringThe application code name for the browser profile
media_devices: JsonValueInformation about available media devices for the browser profile
datadir_hash: Option<String>Hash of the data directory for the browser profile
platform_version: StringVersion of the platform for the browser profile
archived: i8Whether 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
Whether the profile name is hidden in the UI
created_at: OffsetDateTimeWhen the browser profile was created
Trait Implementations§
source§impl From<BrowserProfileWithFingerprint> for MiniBrowserProfile
impl From<BrowserProfileWithFingerprint> for MiniBrowserProfile
source§fn from(browser_profile: BrowserProfileWithFingerprint) -> Self
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 BrowserProfileWithFingerprintwhere
&'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>,
impl<'a, R: Row> FromRow<'a, R> for BrowserProfileWithFingerprintwhere
&'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>,
Auto Trait Implementations§
impl Freeze for BrowserProfileWithFingerprint
impl RefUnwindSafe for BrowserProfileWithFingerprint
impl Send for BrowserProfileWithFingerprint
impl Sync for BrowserProfileWithFingerprint
impl Unpin for BrowserProfileWithFingerprint
impl UnwindSafe for BrowserProfileWithFingerprint
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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