pub struct ExtractedAction {
pub label: String,
pub element_type: String,
pub opcode_hint: Option<u16>,
pub risk: u8,
pub target_url: Option<String>,
}Expand description
An action extracted from the DOM by the actions.ts extractor.
Fields§
§label: String§element_type: String§opcode_hint: Option<u16>§risk: u8§target_url: Option<String>Trait Implementations§
Source§impl Clone for ExtractedAction
impl Clone for ExtractedAction
Source§fn clone(&self) -> ExtractedAction
fn clone(&self) -> ExtractedAction
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 ExtractedAction
impl RefUnwindSafe for ExtractedAction
impl Send for ExtractedAction
impl Sync for ExtractedAction
impl Unpin for ExtractedAction
impl UnsafeUnpin for ExtractedAction
impl UnwindSafe for ExtractedAction
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