pub struct FnDetail {
pub name: String,
pub lines: usize,
pub has_description: bool,
pub is_effectful: bool,
pub verify_cases: usize,
pub has_coverage_gaps: bool,
pub has_decision_impact: bool,
pub level: Justification,
pub missing: Vec<&'static str>,
}Fields§
§name: String§lines: usize§has_description: bool§is_effectful: bool§verify_cases: usize§has_coverage_gaps: bool§has_decision_impact: bool§level: Justification§missing: Vec<&'static str>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FnDetail
impl RefUnwindSafe for FnDetail
impl Send for FnDetail
impl Sync for FnDetail
impl Unpin for FnDetail
impl UnsafeUnpin for FnDetail
impl UnwindSafe for FnDetail
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