pub struct AlgorithmHints {
pub primary_algorithm: String,
pub alternative_algorithms: Vec<String>,
pub confidence: Precision,
pub reasoning: Vec<String>,
}Expand description
Algorithm selection hints based on problem characteristics.
Fields§
§primary_algorithm: StringRecommended primary algorithm
alternative_algorithms: Vec<String>Alternative algorithms in order of preference
confidence: PrecisionConfidence in the recommendation (0.0 to 1.0)
reasoning: Vec<String>Reasoning for the recommendation
Trait Implementations§
Source§impl Clone for AlgorithmHints
impl Clone for AlgorithmHints
Source§fn clone(&self) -> AlgorithmHints
fn clone(&self) -> AlgorithmHints
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 AlgorithmHints
impl Debug for AlgorithmHints
Source§impl<'de> Deserialize<'de> for AlgorithmHints
impl<'de> Deserialize<'de> for AlgorithmHints
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 PartialEq for AlgorithmHints
impl PartialEq for AlgorithmHints
Source§impl Serialize for AlgorithmHints
impl Serialize for AlgorithmHints
impl StructuralPartialEq for AlgorithmHints
Auto Trait Implementations§
impl Freeze for AlgorithmHints
impl RefUnwindSafe for AlgorithmHints
impl Send for AlgorithmHints
impl Sync for AlgorithmHints
impl Unpin for AlgorithmHints
impl UnwindSafe for AlgorithmHints
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