pub struct TourStep {
pub order: u32,
pub name: String,
pub qualified_name: String,
pub kind: String,
pub file: String,
pub start_line: u32,
pub reason: String,
}Expand description
One step in a generated tour.
Fields§
§order: u32§name: String§qualified_name: String§kind: String§file: String§start_line: u32§reason: StringWhy this step appears here — e.g. “high in-degree (12 callers)” or “entry point: public function” or “called by previous step”.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TourStep
impl RefUnwindSafe for TourStep
impl Send for TourStep
impl Sync for TourStep
impl Unpin for TourStep
impl UnsafeUnpin for TourStep
impl UnwindSafe for TourStep
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