pub struct WikiResult {
pub output_dir: String,
pub generated_files: Vec<String>,
pub adr_count: usize,
pub parse_errors: Vec<(PathBuf, Error)>,
}Expand description
Result of the wiki generation use case.
Fields§
§output_dir: StringOutput directory path.
generated_files: Vec<String>List of generated file paths.
adr_count: usizeNumber of ADRs processed.
parse_errors: Vec<(PathBuf, Error)>Files that failed to parse.
Implementations§
Source§impl WikiResult
impl WikiResult
Sourcepub fn has_errors(&self) -> bool
pub fn has_errors(&self) -> bool
Returns true if there were any parse errors.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WikiResult
impl !RefUnwindSafe for WikiResult
impl Send for WikiResult
impl Sync for WikiResult
impl Unpin for WikiResult
impl !UnwindSafe for WikiResult
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