pub struct GetVersionResult {
pub protocol_version: String,
pub product: String,
pub revision: String,
pub user_agent: String,
pub js_version: String,
}Expand description
Result for Browser.getVersion.
Fields§
§protocol_version: StringProtocol version.
product: StringProduct name.
revision: StringProduct revision.
user_agent: StringUser-Agent.
js_version: StringV8 version.
Trait Implementations§
Source§impl Clone for GetVersionResult
impl Clone for GetVersionResult
Source§fn clone(&self) -> GetVersionResult
fn clone(&self) -> GetVersionResult
Returns a duplicate of the value. Read more
1.0.0 · 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 GetVersionResult
impl Debug for GetVersionResult
Source§impl<'de> Deserialize<'de> for GetVersionResult
impl<'de> Deserialize<'de> for GetVersionResult
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 GetVersionResult
impl RefUnwindSafe for GetVersionResult
impl Send for GetVersionResult
impl Sync for GetVersionResult
impl Unpin for GetVersionResult
impl UnwindSafe for GetVersionResult
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