pub struct PostgresConfigRepository { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ConfigRepository for PostgresConfigRepository
impl ConfigRepository for PostgresConfigRepository
fn create<'life0, 'life1, 'async_trait>(
&'life0 self,
config: &'life1 StoredBotConfig,
) -> Pin<Box<dyn Future<Output = Result<(), RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_by_id<'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<StoredBotConfig, RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_latest_for_bot<'life0, 'async_trait>(
&'life0 self,
bot_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Option<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn list_by_bot<'life0, 'async_trait>(
&'life0 self,
bot_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<StoredBotConfig>, RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Source§fn get_next_version_atomic<'life0, 'async_trait>(
&'life0 self,
bot_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<i32, RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_next_version_atomic<'life0, 'async_trait>(
&'life0 self,
bot_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<i32, RepositoryError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get next config version atomically using advisory locks
CRIT-007: Prevents duplicate version numbers under concurrent updates
Auto Trait Implementations§
impl Freeze for PostgresConfigRepository
impl !RefUnwindSafe for PostgresConfigRepository
impl Send for PostgresConfigRepository
impl Sync for PostgresConfigRepository
impl Unpin for PostgresConfigRepository
impl !UnwindSafe for PostgresConfigRepository
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