pub struct ConversionOptions<'a> {
pub input_path: &'a Path,
pub output_dir: &'a Path,
pub include_private: bool,
}
Expand description
Options for converting rustdoc JSON to markdown.
Fields§
§input_path: &'a Path
Path to the input rustdoc JSON file
output_dir: &'a Path
Directory where markdown files will be written
include_private: bool
Whether to include private items in the output
Auto Trait Implementations§
impl<'a> Freeze for ConversionOptions<'a>
impl<'a> RefUnwindSafe for ConversionOptions<'a>
impl<'a> Send for ConversionOptions<'a>
impl<'a> Sync for ConversionOptions<'a>
impl<'a> Unpin for ConversionOptions<'a>
impl<'a> UnwindSafe for ConversionOptions<'a>
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