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 more