pub struct BrowserVersion {
pub browser: Option<String>,
pub protocol_version: Option<String>,
pub user_agent: Option<String>,
pub v8_version: Option<String>,
pub webkit_version: Option<String>,
pub web_socket_debugger_url: Option<String>,
}Expand description
Response from the /json/version endpoint.
Fields§
§browser: Option<String>Browser name and version.
protocol_version: Option<String>Protocol version.
user_agent: Option<String>User agent string.
v8_version: Option<String>V8 version.
webkit_version: Option<String>WebKit version.
web_socket_debugger_url: Option<String>The WebSocket URL for browser-level CDP connection.
Trait Implementations§
Source§impl Debug for BrowserVersion
impl Debug for BrowserVersion
Source§impl<'de> Deserialize<'de> for BrowserVersion
impl<'de> Deserialize<'de> for BrowserVersion
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
Auto Trait Implementations§
impl Freeze for BrowserVersion
impl RefUnwindSafe for BrowserVersion
impl Send for BrowserVersion
impl Sync for BrowserVersion
impl Unpin for BrowserVersion
impl UnwindSafe for BrowserVersion
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