pub struct ExtractedReqs {
pub output: String,
pub reqs: Vec<ReqDefinition>,
pub warnings: Vec<ReqWarning>,
}Expand description
Result of extracting requirements from markdown.
Fields§
§output: StringTransformed markdown with requirement markers replaced by HTML
reqs: Vec<ReqDefinition>All requirements found in the document
warnings: Vec<ReqWarning>Warnings about requirement quality
Trait Implementations§
Source§impl Clone for ExtractedReqs
impl Clone for ExtractedReqs
Source§fn clone(&self) -> ExtractedReqs
fn clone(&self) -> ExtractedReqs
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 moreSource§impl Debug for ExtractedReqs
impl Debug for ExtractedReqs
Auto Trait Implementations§
impl Freeze for ExtractedReqs
impl RefUnwindSafe for ExtractedReqs
impl Send for ExtractedReqs
impl Sync for ExtractedReqs
impl Unpin for ExtractedReqs
impl UnsafeUnpin for ExtractedReqs
impl UnwindSafe for ExtractedReqs
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