pub struct BrowserActionResult {
pub session_id: String,
pub success: bool,
pub elapsed_ms: u64,
pub final_url: Option<String>,
pub title: Option<String>,
}Fields§
§session_id: String§success: bool§elapsed_ms: u64§final_url: Option<String>§title: Option<String>Trait Implementations§
Source§impl Clone for BrowserActionResult
impl Clone for BrowserActionResult
Source§fn clone(&self) -> BrowserActionResult
fn clone(&self) -> BrowserActionResult
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 BrowserActionResult
impl Debug for BrowserActionResult
Source§impl Default for BrowserActionResult
impl Default for BrowserActionResult
Source§fn default() -> BrowserActionResult
fn default() -> BrowserActionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrowserActionResult
impl<'de> Deserialize<'de> for BrowserActionResult
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 BrowserActionResult
impl RefUnwindSafe for BrowserActionResult
impl Send for BrowserActionResult
impl Sync for BrowserActionResult
impl Unpin for BrowserActionResult
impl UnsafeUnpin for BrowserActionResult
impl UnwindSafe for BrowserActionResult
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