pub struct BrowserInfo {
pub url: String,
pub title: String,
pub browser_name: String,
pub browser_type: BrowserType,
pub version: Option<String>,
pub tabs_count: Option<u32>,
pub is_incognito: bool,
pub process_id: u64,
pub window_position: WindowPosition,
}
Expand description
[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
Fields§
§url: String
Current URL displayed in the browser
title: String
§browser_name: String
§browser_type: BrowserType
§version: Option<String>
§tabs_count: Option<u32>
§is_incognito: bool
§process_id: u64
Process ID
window_position: WindowPosition
Window position and size
Auto Trait Implementations§
impl Freeze for BrowserInfo
impl RefUnwindSafe for BrowserInfo
impl Send for BrowserInfo
impl Sync for BrowserInfo
impl Unpin for BrowserInfo
impl UnwindSafe for BrowserInfo
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