pub struct SqliteThreadStore { /* private fields */ }Implementations§
Source§impl SqliteThreadStore
impl SqliteThreadStore
pub fn in_memory() -> Result<Self, ThreadStoreError>
pub fn open(path: impl AsRef<Path>) -> Result<Self, ThreadStoreError>
pub fn create_thread( &self, params: ThreadStartParams, ) -> Result<AppThread, ThreadStoreError>
pub fn get_thread( &self, thread_id: &str, ) -> Result<Option<AppThread>, ThreadStoreError>
pub fn list_threads( &self, include_archived: bool, ) -> Result<Vec<AppThread>, ThreadStoreError>
pub fn archive_thread(&self, thread_id: &str) -> Result<(), ThreadStoreError>
pub fn set_active_turn( &self, thread_id: &str, active_turn_id: Option<&str>, status: ThreadStatus, ) -> Result<(), ThreadStoreError>
pub fn append_item( &self, thread_id: &str, turn_id: &str, item: AppItem, ) -> Result<(), ThreadStoreError>
pub fn replay_items( &self, thread_id: &str, ) -> Result<Vec<AppItem>, ThreadStoreError>
Trait Implementations§
Source§impl Clone for SqliteThreadStore
impl Clone for SqliteThreadStore
Source§fn clone(&self) -> SqliteThreadStore
fn clone(&self) -> SqliteThreadStore
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 SqliteThreadStore
impl RefUnwindSafe for SqliteThreadStore
impl Send for SqliteThreadStore
impl Sync for SqliteThreadStore
impl Unpin for SqliteThreadStore
impl UnsafeUnpin for SqliteThreadStore
impl UnwindSafe for SqliteThreadStore
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreCreates a shared type from an unshared type.