pub struct TableSqlSchemaAdapter { /* private fields */ }Expand description
Stateless adapter for generating SQL artifacts from table schemas.
Implementations§
Trait Implementations§
Source§impl Clone for TableSqlSchemaAdapter
impl Clone for TableSqlSchemaAdapter
Source§fn clone(&self) -> TableSqlSchemaAdapter
fn clone(&self) -> TableSqlSchemaAdapter
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 moreimpl Copy for TableSqlSchemaAdapter
Source§impl Debug for TableSqlSchemaAdapter
impl Debug for TableSqlSchemaAdapter
impl Eq for TableSqlSchemaAdapter
Source§impl PartialEq for TableSqlSchemaAdapter
impl PartialEq for TableSqlSchemaAdapter
Source§fn eq(&self, other: &TableSqlSchemaAdapter) -> bool
fn eq(&self, other: &TableSqlSchemaAdapter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ReadModelSchemaAdapter for TableSqlSchemaAdapter
impl ReadModelSchemaAdapter for TableSqlSchemaAdapter
fn schema_capabilities(&self) -> TableSchemaAdapterCapabilities
fn generate_migration_artifacts( &self, registry: &TableSchemaRegistry, ) -> Result<Vec<TableMigrationArtifact>, TableStoreError>
fn verify_schema( &self, _registry: &ReadModelSchemaRegistry, ) -> Result<ReadModelSchemaVerification, ReadModelError>
fn bootstrap_schema_for_dev( &self, _registry: &ReadModelSchemaRegistry, ) -> Result<ReadModelSchemaBootstrap, ReadModelError>
impl StructuralPartialEq for TableSqlSchemaAdapter
Auto Trait Implementations§
impl Freeze for TableSqlSchemaAdapter
impl RefUnwindSafe for TableSqlSchemaAdapter
impl Send for TableSqlSchemaAdapter
impl Sync for TableSqlSchemaAdapter
impl Unpin for TableSqlSchemaAdapter
impl UnsafeUnpin for TableSqlSchemaAdapter
impl UnwindSafe for TableSqlSchemaAdapter
Blanket Implementations§
Source§impl<T> AggregateBuilder for T
impl<T> AggregateBuilder for T
fn aggregate<A: Aggregate>(self) -> AggregateRepository<Self, A>
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> Queueable for T
impl<T> Queueable for T
Source§fn queued(self) -> QueuedRepository<Self, InMemoryAsyncLockManager>
fn queued(self) -> QueuedRepository<Self, InMemoryAsyncLockManager>
Wrap with the default async lock manager. Pair with
.aggregate::<T>() for per-aggregate serialization over the async
repository surface.Source§fn queued_with<L: AsyncLockManager>(
self,
lock_manager: L,
) -> QueuedRepository<Self, L>
fn queued_with<L: AsyncLockManager>( self, lock_manager: L, ) -> QueuedRepository<Self, L>
Wrap with a custom async lock manager.