pub enum TestProgress<Error> {
GroupStart(String),
GroupEnd,
Test(String, Result<(), Error>),
}Variants§
Trait Implementations§
Source§impl<Error: Debug> Debug for TestProgress<Error>
impl<Error: Debug> Debug for TestProgress<Error>
Source§impl<Error: PartialEq> PartialEq for TestProgress<Error>
impl<Error: PartialEq> PartialEq for TestProgress<Error>
impl<Error> StructuralPartialEq for TestProgress<Error>
Auto Trait Implementations§
impl<Error> Freeze for TestProgress<Error>where
Error: Freeze,
impl<Error> RefUnwindSafe for TestProgress<Error>where
Error: RefUnwindSafe,
impl<Error> Send for TestProgress<Error>where
Error: Send,
impl<Error> Sync for TestProgress<Error>where
Error: Sync,
impl<Error> Unpin for TestProgress<Error>where
Error: Unpin,
impl<Error> UnsafeUnpin for TestProgress<Error>where
Error: UnsafeUnpin,
impl<Error> UnwindSafe for TestProgress<Error>where
Error: UnwindSafe,
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