pub struct CheckResult {
pub func_name: String,
pub func_span: Span,
pub failed_contracts: HashMap<usize, HashSet<String>>,
pub passed_contracts: HashMap<usize, HashSet<String>>,
}
Fields§
§func_name: String
§func_span: Span
§failed_contracts: HashMap<usize, HashSet<String>>
§passed_contracts: HashMap<usize, HashSet<String>>
Implementations§
Auto Trait Implementations§
impl Freeze for CheckResult
impl RefUnwindSafe for CheckResult
impl Send for CheckResult
impl Sync for CheckResult
impl Unpin for CheckResult
impl UnwindSafe for CheckResult
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