pub enum SqlParameterStyle {
PostgresIndexed,
PositionalQuestionMark,
NamedColon,
NamedAtSign,
}Expand description
SQL parameter placeholder styles.
Variants§
Trait Implementations§
Source§impl Clone for SqlParameterStyle
impl Clone for SqlParameterStyle
Source§fn clone(&self) -> SqlParameterStyle
fn clone(&self) -> SqlParameterStyle
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 moreSource§impl Debug for SqlParameterStyle
impl Debug for SqlParameterStyle
Source§impl Default for SqlParameterStyle
impl Default for SqlParameterStyle
Source§fn default() -> SqlParameterStyle
fn default() -> SqlParameterStyle
Returns the “default value” for a type. Read more
Source§impl Hash for SqlParameterStyle
impl Hash for SqlParameterStyle
Source§impl Ord for SqlParameterStyle
impl Ord for SqlParameterStyle
Source§fn cmp(&self, other: &SqlParameterStyle) -> Ordering
fn cmp(&self, other: &SqlParameterStyle) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SqlParameterStyle
impl PartialEq for SqlParameterStyle
Source§fn eq(&self, other: &SqlParameterStyle) -> bool
fn eq(&self, other: &SqlParameterStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SqlParameterStyle
impl PartialOrd for SqlParameterStyle
impl Copy for SqlParameterStyle
impl Eq for SqlParameterStyle
impl StructuralPartialEq for SqlParameterStyle
Auto Trait Implementations§
impl Freeze for SqlParameterStyle
impl RefUnwindSafe for SqlParameterStyle
impl Send for SqlParameterStyle
impl Sync for SqlParameterStyle
impl Unpin for SqlParameterStyle
impl UnsafeUnpin for SqlParameterStyle
impl UnwindSafe for SqlParameterStyle
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