pub enum ArmTest {
Enum {
path: Vec<Rc<str>>,
values: Vec<Rc<str>>,
},
Bool {
path: Vec<Rc<str>>,
values: Vec<bool>,
},
Number {
path: Vec<Rc<str>>,
cover: NumberCover,
},
Default,
Unrecognized,
}Variants§
Trait Implementations§
impl StructuralPartialEq for ArmTest
Auto Trait Implementations§
impl !Send for ArmTest
impl !Sync for ArmTest
impl Freeze for ArmTest
impl RefUnwindSafe for ArmTest
impl Unpin for ArmTest
impl UnsafeUnpin for ArmTest
impl UnwindSafe for ArmTest
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