pub struct ParsedStep {
pub number: usize,
pub description: String,
pub indent_level: usize,
pub is_priority: bool,
}Expand description
A parsed step from plan content
Fields§
§number: usizeStep number (1-based)
description: StringStep description
indent_level: usizeIndentation level (0 = root, 1 = substep, etc.)
is_priority: boolWhether this step is marked as high priority
Trait Implementations§
Source§impl Clone for ParsedStep
impl Clone for ParsedStep
Source§fn clone(&self) -> ParsedStep
fn clone(&self) -> ParsedStep
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 ParsedStep
impl RefUnwindSafe for ParsedStep
impl Send for ParsedStep
impl Sync for ParsedStep
impl Unpin for ParsedStep
impl UnsafeUnpin for ParsedStep
impl UnwindSafe for ParsedStep
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