pub struct MarkdownOutput {
pub crate_name: String,
pub files: HashMap<String, String>,
pub sidebar: Option<String>,
}Expand description
Represents the multi-file markdown output
Fields§
§crate_name: StringCrate name
files: HashMap<String, String>Map of relative file path -> content
Sidebar configuration (optional, for Docusaurus)
Auto Trait Implementations§
impl Freeze for MarkdownOutput
impl RefUnwindSafe for MarkdownOutput
impl Send for MarkdownOutput
impl Sync for MarkdownOutput
impl Unpin for MarkdownOutput
impl UnwindSafe for MarkdownOutput
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