pub enum PlaceholderStyle {
Postgres,
Sqlite,
}Expand description
Target placeholder style for translation.
Variants§
Postgres
PostgreSQL-style placeholders like $1.
Sqlite
SQLite-style placeholders like ?1 (also used by LibSQL/Turso).
Trait Implementations§
Source§impl Clone for PlaceholderStyle
impl Clone for PlaceholderStyle
Source§fn clone(&self) -> PlaceholderStyle
fn clone(&self) -> PlaceholderStyle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlaceholderStyle
impl Debug for PlaceholderStyle
Source§impl PartialEq for PlaceholderStyle
impl PartialEq for PlaceholderStyle
impl Copy for PlaceholderStyle
impl Eq for PlaceholderStyle
impl StructuralPartialEq for PlaceholderStyle
Auto Trait Implementations§
impl Freeze for PlaceholderStyle
impl RefUnwindSafe for PlaceholderStyle
impl Send for PlaceholderStyle
impl Sync for PlaceholderStyle
impl Unpin for PlaceholderStyle
impl UnwindSafe for PlaceholderStyle
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