pub struct ActRequest {
pub url: String,
pub opcode: OpCode,
pub params: HashMap<String, Value>,
pub session_id: Option<String>,
}Expand description
Parameters for an action.
Fields§
§url: StringThe URL of the page to act on.
opcode: OpCodeThe opcode to execute.
params: HashMap<String, Value>Additional parameters for the action.
session_id: Option<String>Session ID for multi-step flows.
Trait Implementations§
Source§impl Clone for ActRequest
impl Clone for ActRequest
Source§fn clone(&self) -> ActRequest
fn clone(&self) -> ActRequest
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 ActRequest
impl RefUnwindSafe for ActRequest
impl Send for ActRequest
impl Sync for ActRequest
impl Unpin for ActRequest
impl UnsafeUnpin for ActRequest
impl UnwindSafe for ActRequest
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