pub struct GetVersionReturns {
pub protocolVersion: String,
pub product: String,
pub revision: String,
pub userAgent: String,
pub jsVersion: String,
}Expand description
Returns version information.
Fields§
§protocolVersion: StringProtocol version.
product: StringProduct name.
revision: StringProduct revision.
userAgent: StringUser-Agent.
jsVersion: StringV8 version.
Trait Implementations§
Source§impl Clone for GetVersionReturns
impl Clone for GetVersionReturns
Source§fn clone(&self) -> GetVersionReturns
fn clone(&self) -> GetVersionReturns
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 GetVersionReturns
impl Debug for GetVersionReturns
Source§impl Default for GetVersionReturns
impl Default for GetVersionReturns
Source§fn default() -> GetVersionReturns
fn default() -> GetVersionReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetVersionReturns
impl<'de> Deserialize<'de> for GetVersionReturns
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 GetVersionReturns
impl RefUnwindSafe for GetVersionReturns
impl Send for GetVersionReturns
impl Sync for GetVersionReturns
impl Unpin for GetVersionReturns
impl UnsafeUnpin for GetVersionReturns
impl UnwindSafe for GetVersionReturns
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