pub struct GapAnalysis {
pub missing_sections: Vec<String>,
pub incomplete_sections: Vec<String>,
pub suggestions: Vec<String>,
}Expand description
Gap analysis result for a spec
Fields§
§missing_sections: Vec<String>Missing sections in the spec
incomplete_sections: Vec<String>Incomplete sections
suggestions: Vec<String>Suggestions for improvement
Trait Implementations§
Source§impl Clone for GapAnalysis
impl Clone for GapAnalysis
Source§fn clone(&self) -> GapAnalysis
fn clone(&self) -> GapAnalysis
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 GapAnalysis
impl RefUnwindSafe for GapAnalysis
impl Send for GapAnalysis
impl Sync for GapAnalysis
impl Unpin for GapAnalysis
impl UnwindSafe for GapAnalysis
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