pub enum SignalType {
Performance {
metric: String,
improvement_potential: f32,
},
ErrorPattern {
error_type: String,
frequency: u32,
},
ResourceOptimization {
resource_type: String,
current_usage: f32,
},
QualityIssue {
issue_type: String,
severity: f32,
},
SuccessPattern {
pattern: String,
repeatability: f32,
},
}Expand description
Types of evolution signals
Variants§
Performance
Performance improvement opportunity
ErrorPattern
Error pattern detected
ResourceOptimization
Resource optimization
QualityIssue
Quality issue
SuccessPattern
Success pattern that could be generalized
Trait Implementations§
Source§impl Clone for SignalType
impl Clone for SignalType
Source§fn clone(&self) -> SignalType
fn clone(&self) -> SignalType
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 SignalType
impl Debug for SignalType
Source§impl<'de> Deserialize<'de> for SignalType
impl<'de> Deserialize<'de> for SignalType
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
Auto Trait Implementations§
impl Freeze for SignalType
impl RefUnwindSafe for SignalType
impl Send for SignalType
impl Sync for SignalType
impl Unpin for SignalType
impl UnsafeUnpin for SignalType
impl UnwindSafe for SignalType
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