pub struct MemoryRelationRepository<'a> {
pub pool: &'a SqlitePool,
}Expand description
Repository for memory relationship operations
Fields§
§pool: &'a SqlitePoolImplementations§
Source§impl<'a> MemoryRelationRepository<'a>
impl<'a> MemoryRelationRepository<'a>
pub fn new(pool: &'a SqlitePool) -> Self
Sourcepub async fn store(
&self,
source_id: i64,
target_id: i64,
relation_type: &str,
strength: f32,
) -> Result<i64>
pub async fn store( &self, source_id: i64, target_id: i64, relation_type: &str, strength: f32, ) -> Result<i64>
Store a relationship between two memories
Get all related memories for a given memory
Sourcepub async fn delete_for_memory(&self, memory_id: i64) -> Result<u64>
pub async fn delete_for_memory(&self, memory_id: i64) -> Result<u64>
Delete all relations for a memory
Auto Trait Implementations§
impl<'a> Freeze for MemoryRelationRepository<'a>
impl<'a> !RefUnwindSafe for MemoryRelationRepository<'a>
impl<'a> Send for MemoryRelationRepository<'a>
impl<'a> Sync for MemoryRelationRepository<'a>
impl<'a> Unpin for MemoryRelationRepository<'a>
impl<'a> UnsafeUnpin for MemoryRelationRepository<'a>
impl<'a> !UnwindSafe for MemoryRelationRepository<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more