pub struct CollectiveDream {
pub id: DreamId,
pub participants: Vec<String>,
pub individual_dreams: HashMap<String, Dream>,
pub synthesis: DreamSynthesis,
pub coherence_score: f64,
}Fields§
§id: DreamId§participants: Vec<String>§individual_dreams: HashMap<String, Dream>§synthesis: DreamSynthesis§coherence_score: f64Trait Implementations§
Source§impl Clone for CollectiveDream
impl Clone for CollectiveDream
Source§fn clone(&self) -> CollectiveDream
fn clone(&self) -> CollectiveDream
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 CollectiveDream
impl Debug for CollectiveDream
Source§impl<'de> Deserialize<'de> for CollectiveDream
impl<'de> Deserialize<'de> for CollectiveDream
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 CollectiveDream
impl RefUnwindSafe for CollectiveDream
impl Send for CollectiveDream
impl Sync for CollectiveDream
impl Unpin for CollectiveDream
impl UnsafeUnpin for CollectiveDream
impl UnwindSafe for CollectiveDream
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