pub struct PlannedStep {
pub index: usize,
pub summary: String,
pub step: Step,
pub points: Vec<ResolvedPoint>,
}Expand description
One step, resolved to the points it will act on.
Fields§
§index: usize§summary: String§step: Step§points: Vec<ResolvedPoint>Resolved points, in the order the step’s targets appear. Empty for keyboard steps.
Trait Implementations§
Source§impl Clone for PlannedStep
impl Clone for PlannedStep
Source§fn clone(&self) -> PlannedStep
fn clone(&self) -> PlannedStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlannedStep
impl Debug for PlannedStep
Source§impl PartialEq for PlannedStep
impl PartialEq for PlannedStep
impl StructuralPartialEq for PlannedStep
Auto Trait Implementations§
impl Freeze for PlannedStep
impl RefUnwindSafe for PlannedStep
impl Send for PlannedStep
impl Sync for PlannedStep
impl Unpin for PlannedStep
impl UnsafeUnpin for PlannedStep
impl UnwindSafe for PlannedStep
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