pub enum HelpEntry {
Pair {
key: String,
desc: String,
},
Detail(String),
}Expand description
A single line within a HelpSection.
Variants§
Pair
A key/description pair, aligned in columns across the section.
Detail(String)
A free-form dimmed line.
Auto Trait Implementations§
impl Freeze for HelpEntry
impl RefUnwindSafe for HelpEntry
impl Send for HelpEntry
impl Sync for HelpEntry
impl Unpin for HelpEntry
impl UnsafeUnpin for HelpEntry
impl UnwindSafe for HelpEntry
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