pub struct Folded {
pub root: String,
pub by: String,
pub course: Course,
pub why: String,
pub hides: Vec<String>,
}Expand description
A line somebody abandoned: what it hides, and why, in words.
Fields§
§root: StringThe move the decision named. Everything under it is in hides.
by: StringThe decision that said so.
course: Course§why: StringThe decision’s own prose. Pruning says why or it is deletion with a nicer name.
hides: Vec<String>What folds with it, in the order they were made, the root among them.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Folded
impl RefUnwindSafe for Folded
impl Send for Folded
impl Sync for Folded
impl Unpin for Folded
impl UnsafeUnpin for Folded
impl UnwindSafe for Folded
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