pub enum RawPlaceholder {
QuestionMark,
Indexed(usize),
Named(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RawPlaceholder
impl Clone for RawPlaceholder
Source§fn clone(&self) -> RawPlaceholder
fn clone(&self) -> RawPlaceholder
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 RawPlaceholder
impl Debug for RawPlaceholder
impl Eq for RawPlaceholder
Source§impl PartialEq for RawPlaceholder
impl PartialEq for RawPlaceholder
Source§fn eq(&self, other: &RawPlaceholder) -> bool
fn eq(&self, other: &RawPlaceholder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RawPlaceholder
Source§impl ToSqlSegment for RawPlaceholder
impl ToSqlSegment for RawPlaceholder
fn gen_sql_segment(&self) -> SqlSegment
fn gen_sql_segments(&self) -> Vec<SqlSegment>
Auto Trait Implementations§
impl Freeze for RawPlaceholder
impl RefUnwindSafe for RawPlaceholder
impl Send for RawPlaceholder
impl Sync for RawPlaceholder
impl Unpin for RawPlaceholder
impl UnsafeUnpin for RawPlaceholder
impl UnwindSafe for RawPlaceholder
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