pub struct SyncRule {
pub source_table: String,
pub target_collection: String,
pub trigger_column: Option<String>,
pub embedding_model: Option<String>,
}Expand description
[[sync]] — Qdrant sync rule (unchanged from existing CLI).
Fields§
§source_table: StringPostgreSQL source table.
target_collection: StringQdrant target collection.
trigger_column: Option<String>Column that triggers re-sync.
embedding_model: Option<String>Embedding model for sync.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncRule
impl RefUnwindSafe for SyncRule
impl Send for SyncRule
impl Sync for SyncRule
impl Unpin for SyncRule
impl UnsafeUnpin for SyncRule
impl UnwindSafe for SyncRule
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