pub struct EvolutionProjection {
pub genes: Vec<Gene>,
pub capsules: Vec<Capsule>,
pub reuse_counts: BTreeMap<GeneId, u64>,
pub attempt_counts: BTreeMap<GeneId, u64>,
pub last_updated_at: BTreeMap<GeneId, String>,
pub spec_ids_by_gene: BTreeMap<GeneId, BTreeSet<String>>,
}Fields§
§genes: Vec<Gene>§capsules: Vec<Capsule>§reuse_counts: BTreeMap<GeneId, u64>§attempt_counts: BTreeMap<GeneId, u64>§last_updated_at: BTreeMap<GeneId, String>§spec_ids_by_gene: BTreeMap<GeneId, BTreeSet<String>>Trait Implementations§
Source§impl Clone for EvolutionProjection
impl Clone for EvolutionProjection
Source§fn clone(&self) -> EvolutionProjection
fn clone(&self) -> EvolutionProjection
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 EvolutionProjection
impl Debug for EvolutionProjection
Source§impl Default for EvolutionProjection
impl Default for EvolutionProjection
Source§fn default() -> EvolutionProjection
fn default() -> EvolutionProjection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvolutionProjection
impl<'de> Deserialize<'de> for EvolutionProjection
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 EvolutionProjection
impl RefUnwindSafe for EvolutionProjection
impl Send for EvolutionProjection
impl Sync for EvolutionProjection
impl Unpin for EvolutionProjection
impl UnsafeUnpin for EvolutionProjection
impl UnwindSafe for EvolutionProjection
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