pub struct Walk {
pub tree: String,
pub built_from: String,
pub stops: Vec<Stop>,
pub steps: Vec<Step>,
}Expand description
A whole line, ready to print or to draw.
Fields§
§tree: String§built_from: String§stops: Vec<Stop>§steps: Vec<Step>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Walk
impl RefUnwindSafe for Walk
impl Send for Walk
impl Sync for Walk
impl Unpin for Walk
impl UnsafeUnpin for Walk
impl UnwindSafe for Walk
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