pub struct ClickResult {
pub clicked: bool,
pub verified: bool,
pub navigated: bool,
pub reason: String,
}Expand description
Result of a click operation.
Fields§
§clicked: boolWhether the click was performed.
verified: boolWhether the click was verified as successful.
Whether navigation was detected.
reason: StringThe reason for the result.
Implementations§
Trait Implementations§
Source§impl Clone for ClickResult
impl Clone for ClickResult
Source§fn clone(&self) -> ClickResult
fn clone(&self) -> ClickResult
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 moreAuto Trait Implementations§
impl Freeze for ClickResult
impl RefUnwindSafe for ClickResult
impl Send for ClickResult
impl Sync for ClickResult
impl Unpin for ClickResult
impl UnwindSafe for ClickResult
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