pub struct ConceptSource {
pub concept_id: String,
pub memory_source_id: String,
pub linked_at: i64,
pub link_reason: Option<String>,
}Expand description
A link between a concept and one of its source memories (concept_sources join table).
Fields§
§concept_id: String§memory_source_id: String§linked_at: i64Unix timestamp of when this link was created.
link_reason: Option<String>Trait Implementations§
Source§impl Clone for ConceptSource
impl Clone for ConceptSource
Source§fn clone(&self) -> ConceptSource
fn clone(&self) -> ConceptSource
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 ConceptSource
impl Debug for ConceptSource
Source§impl<'de> Deserialize<'de> for ConceptSource
impl<'de> Deserialize<'de> for ConceptSource
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 ConceptSource
impl RefUnwindSafe for ConceptSource
impl Send for ConceptSource
impl Sync for ConceptSource
impl Unpin for ConceptSource
impl UnsafeUnpin for ConceptSource
impl UnwindSafe for ConceptSource
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