pub enum GeneCategory {
Repair,
Optimize,
Innovate,
}Expand description
Gene category - the intent type
Variants§
Repair
Fix errors, restore stability, reduce failure rate
Optimize
Improve existing capabilities, increase success rate
Innovate
Explore new strategies, break out of local optima
Trait Implementations§
Source§impl Clone for GeneCategory
impl Clone for GeneCategory
Source§fn clone(&self) -> GeneCategory
fn clone(&self) -> GeneCategory
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 GeneCategory
impl Debug for GeneCategory
Source§impl Default for GeneCategory
impl Default for GeneCategory
Source§impl<'de> Deserialize<'de> for GeneCategory
impl<'de> Deserialize<'de> for GeneCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GeneCategory
impl Display for GeneCategory
Source§impl PartialEq for GeneCategory
impl PartialEq for GeneCategory
Source§impl Serialize for GeneCategory
impl Serialize for GeneCategory
impl Eq for GeneCategory
impl StructuralPartialEq for GeneCategory
Auto Trait Implementations§
impl Freeze for GeneCategory
impl RefUnwindSafe for GeneCategory
impl Send for GeneCategory
impl Sync for GeneCategory
impl Unpin for GeneCategory
impl UnsafeUnpin for GeneCategory
impl UnwindSafe for GeneCategory
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