pub struct InteractionResult {
pub action_results: Vec<ActionResult>,
pub final_html: String,
pub final_url: String,
pub screenshot: Option<Vec<u8>>,
}Expand description
Result of executing a sequence of page interaction actions.
Fields§
§action_results: Vec<ActionResult>Results from each executed action.
final_html: StringFinal page HTML after all actions completed.
final_url: StringFinal page URL (may have changed due to navigation).
screenshot: Option<Vec<u8>>Screenshot taken after all actions, if requested.
Trait Implementations§
Source§impl Clone for InteractionResult
impl Clone for InteractionResult
Source§fn clone(&self) -> InteractionResult
fn clone(&self) -> InteractionResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InteractionResult
impl Debug for InteractionResult
Source§impl Default for InteractionResult
impl Default for InteractionResult
Source§fn default() -> InteractionResult
fn default() -> InteractionResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InteractionResult
impl<'de> Deserialize<'de> for InteractionResult
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 InteractionResult
impl RefUnwindSafe for InteractionResult
impl Send for InteractionResult
impl Sync for InteractionResult
impl Unpin for InteractionResult
impl UnsafeUnpin for InteractionResult
impl UnwindSafe for InteractionResult
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