pub enum Test {
App {
head: &'static str,
arity: usize,
},
Int(i128),
}Expand description
One test on one subterm.
Variants§
App
The subterm has to be this head applied to this many arguments.
Int(i128)
The subterm has to be this constant.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Test
impl RefUnwindSafe for Test
impl Send for Test
impl Sync for Test
impl Unpin for Test
impl UnsafeUnpin for Test
impl UnwindSafe for Test
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