pub struct PatternPerformance {
pub pattern_name: String,
pub score: f64,
pub metrics: PatternMetrics,
}Expand description
Pattern performance ranking
Fields§
§pattern_name: String§score: f64§metrics: PatternMetricsTrait Implementations§
Source§impl Clone for PatternPerformance
impl Clone for PatternPerformance
Source§fn clone(&self) -> PatternPerformance
fn clone(&self) -> PatternPerformance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PatternPerformance
impl Debug for PatternPerformance
Source§impl<'de> Deserialize<'de> for PatternPerformance
impl<'de> Deserialize<'de> for PatternPerformance
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 PatternPerformance
impl RefUnwindSafe for PatternPerformance
impl Send for PatternPerformance
impl Sync for PatternPerformance
impl Unpin for PatternPerformance
impl UnsafeUnpin for PatternPerformance
impl UnwindSafe for PatternPerformance
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