pub struct MemoryEntryData {
pub id: String,
pub kind: String,
pub text: String,
pub coordinates: Vec<MemoryCoordinateData>,
pub metadata: BTreeMap<String, String>,
}Fields§
§id: String§kind: String§text: String§coordinates: Vec<MemoryCoordinateData>§metadata: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for MemoryEntryData
impl Clone for MemoryEntryData
Source§fn clone(&self) -> MemoryEntryData
fn clone(&self) -> MemoryEntryData
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 MemoryEntryData
impl Debug for MemoryEntryData
impl Eq for MemoryEntryData
Source§impl PartialEq for MemoryEntryData
impl PartialEq for MemoryEntryData
Source§impl Serialize for MemoryEntryData
impl Serialize for MemoryEntryData
impl StructuralPartialEq for MemoryEntryData
Auto Trait Implementations§
impl Freeze for MemoryEntryData
impl RefUnwindSafe for MemoryEntryData
impl Send for MemoryEntryData
impl Sync for MemoryEntryData
impl Unpin for MemoryEntryData
impl UnsafeUnpin for MemoryEntryData
impl UnwindSafe for MemoryEntryData
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