Enum sql_parse::SQLArguments
source · 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 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