pub enum Feature {
Show 19 variants
IntLiterals,
FloatLiterals,
StringLiterals,
BoolLiterals,
NoneLiteral,
Variables,
Assignments,
ArithmeticOps,
LogicalOps,
UnaryOps,
Comparisons,
IfStatements,
WhileLoops,
ForLoops,
Functions,
FunctionCalls,
Returns,
Lists,
ControlFlow,
}Expand description
Feature categories for swarm testing
Variants§
IntLiterals
Integer literals
FloatLiterals
Float literals
StringLiterals
String literals
BoolLiterals
Boolean literals
NoneLiteral
None literal
Variables
Variable references
Assignments
Assignment statements
ArithmeticOps
Arithmetic operators (+, -, *, /, %, //, **)
LogicalOps
Logical operators (and, or)
UnaryOps
Unary operators (not, -, +)
Comparisons
Comparison operators (<, >, ==, !=, <=, >=)
IfStatements
If statements
WhileLoops
While loops
ForLoops
For loops
Functions
Function definitions
FunctionCalls
Function calls
Returns
Return statements
Lists
List literals
ControlFlow
Control flow (break, continue, pass)
Implementations§
Trait Implementations§
impl Copy for Feature
impl Eq for Feature
impl StructuralPartialEq for Feature
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnsafeUnpin for Feature
impl UnwindSafe for Feature
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more