pub enum ImprovementAspect {
Performance,
Readability,
Features,
Structure,
Testing,
Documentation,
Security,
Efficiency,
}Expand description
Aspects of code that can be improved
Variants§
Performance
Improve code performance and efficiency
Readability
Improve code readability and maintainability
Features
Add or improve features
Structure
Improve code structure and organization
Testing
Add or improve tests
Documentation
Add or improve documentation
Security
Improve security aspects
Efficiency
Improve overall efficiency
Trait Implementations§
Source§impl Clone for ImprovementAspect
impl Clone for ImprovementAspect
Source§fn clone(&self) -> ImprovementAspect
fn clone(&self) -> ImprovementAspect
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImprovementAspect
impl Debug for ImprovementAspect
Source§impl Display for ImprovementAspect
impl Display for ImprovementAspect
Source§impl ValueEnum for ImprovementAspect
impl ValueEnum for ImprovementAspect
Auto Trait Implementations§
impl Freeze for ImprovementAspect
impl RefUnwindSafe for ImprovementAspect
impl Send for ImprovementAspect
impl Sync for ImprovementAspect
impl Unpin for ImprovementAspect
impl UnwindSafe for ImprovementAspect
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