pub enum SQLArguments {
None,
Percent,
QuestionMark,
Dollar,
}
Expand description
What kinds or arguments
Variants§
None
The statements do not contain arguments
Percent
Arguments are %s or %d
QuestionMark
Arguments are ?
Dollar
Arguments ar #i
Trait Implementations§
Source§impl Clone for SQLArguments
impl Clone for SQLArguments
Source§fn clone(&self) -> SQLArguments
fn clone(&self) -> SQLArguments
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for SQLArguments
impl RefUnwindSafe for SQLArguments
impl Send for SQLArguments
impl Sync for SQLArguments
impl Unpin for SQLArguments
impl UnwindSafe for SQLArguments
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