pub struct Reconstruction {
pub content: String,
pub tile_id: TileId,
pub confidence: f64,
pub inferred_facts: Vec<String>,
pub preserved_facts: Vec<String>,
}Expand description
A reconstructed memory — decoded from a tile with context.
Fields§
§content: String§tile_id: TileId§confidence: f64§inferred_facts: Vec<String>§preserved_facts: Vec<String>Trait Implementations§
Source§impl Clone for Reconstruction
impl Clone for Reconstruction
Source§fn clone(&self) -> Reconstruction
fn clone(&self) -> Reconstruction
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 moreAuto Trait Implementations§
impl Freeze for Reconstruction
impl RefUnwindSafe for Reconstruction
impl Send for Reconstruction
impl Sync for Reconstruction
impl Unpin for Reconstruction
impl UnsafeUnpin for Reconstruction
impl UnwindSafe for Reconstruction
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