pub struct HelpCategory {
pub name: String,
pub title: String,
pub description: String,
pub content: String,
}Expand description
Help category definition.
Fields§
§name: StringCategory identifier.
title: StringHuman-readable title.
description: StringShort description.
content: StringFull content in Markdown.
Trait Implementations§
Source§impl Clone for HelpCategory
impl Clone for HelpCategory
Source§fn clone(&self) -> HelpCategory
fn clone(&self) -> HelpCategory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HelpCategory
impl RefUnwindSafe for HelpCategory
impl Send for HelpCategory
impl Sync for HelpCategory
impl Unpin for HelpCategory
impl UnwindSafe for HelpCategory
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