pub struct Section {
title: String,
all_steps: Vec<Step>,
}Expand description
Each Section struct contains all Steps within that document section
Fields§
§title: StringWhat the section is named, hopefully descriptive enough that operators know what to expect, and can anticipate operations
all_steps: Vec<Step>Ordered set of all Steps in the section (each Step is rich with Sub-Step information as well)
Implementations§
Auto Trait Implementations§
impl Freeze for Section
impl RefUnwindSafe for Section
impl Send for Section
impl Sync for Section
impl Unpin for Section
impl UnwindSafe for Section
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