pub struct ActionArgs<'a> {
pub task_id: MaaId,
pub node_name: &'a str,
pub name: &'a str,
pub param: &'a str,
pub reco_id: MaaId,
pub box_rect: &'a Rect,
}Expand description
Arguments bundle for custom action closure.
Fields§
§task_id: MaaId§node_name: &'a str§name: &'a str§param: &'a str§reco_id: MaaId§box_rect: &'a RectAuto Trait Implementations§
impl<'a> Freeze for ActionArgs<'a>
impl<'a> RefUnwindSafe for ActionArgs<'a>
impl<'a> Send for ActionArgs<'a>
impl<'a> Sync for ActionArgs<'a>
impl<'a> Unpin for ActionArgs<'a>
impl<'a> UnwindSafe for ActionArgs<'a>
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