pub struct ActResult {
pub success: bool,
pub new_url: Option<String>,
pub features: Vec<(usize, f32)>,
pub method: ExecutionMethod,
}Expand description
Result of executing an action.
Fields§
§success: boolWhether the action succeeded.
new_url: Option<String>The new URL after the action (if navigation occurred).
features: Vec<(usize, f32)>Updated features after the action.
method: ExecutionMethodHow the action was executed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ActResult
impl<'de> Deserialize<'de> for ActResult
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 ActResult
impl RefUnwindSafe for ActResult
impl Send for ActResult
impl Sync for ActResult
impl Unpin for ActResult
impl UnsafeUnpin for ActResult
impl UnwindSafe for ActResult
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