pub struct EvolutionAdvice {
pub action: String,
pub gene: Option<Gene>,
pub confidence: Option<f64>,
pub signals: Option<Vec<Value>>,
}Fields§
§action: String§gene: Option<Gene>§confidence: Option<f64>§signals: Option<Vec<Value>>Trait Implementations§
Source§impl Debug for EvolutionAdvice
impl Debug for EvolutionAdvice
Source§impl<'de> Deserialize<'de> for EvolutionAdvice
impl<'de> Deserialize<'de> for EvolutionAdvice
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 EvolutionAdvice
impl RefUnwindSafe for EvolutionAdvice
impl Send for EvolutionAdvice
impl Sync for EvolutionAdvice
impl Unpin for EvolutionAdvice
impl UnsafeUnpin for EvolutionAdvice
impl UnwindSafe for EvolutionAdvice
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