pub struct AssertCollector {
pub counter: i32,
pub success: bool,
pub summary: String,
pub failures: String,
}
Expand description
AssertCollector collects the results of assertions in the UCG AST.
Fields§
§counter: i32
§success: bool
§summary: String
§failures: String
Implementations§
Auto Trait Implementations§
impl Freeze for AssertCollector
impl RefUnwindSafe for AssertCollector
impl Send for AssertCollector
impl Sync for AssertCollector
impl Unpin for AssertCollector
impl UnwindSafe for AssertCollector
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