pub enum NormalizeFunctions {
Upper,
Lower,
None,
}Expand description
Controls how SQL function names are cased in generated output.
Upper(default) –COUNT,SUM,COALESCELower–count,sum,coalesceNone– preserve the original casing from the parsed input
Variants§
Upper
Emit function names in UPPER CASE (default).
Lower
Emit function names in lower case.
None
Preserve the original casing from the parsed input.
Trait Implementations§
Source§impl Clone for NormalizeFunctions
impl Clone for NormalizeFunctions
Source§fn clone(&self) -> NormalizeFunctions
fn clone(&self) -> NormalizeFunctions
Returns a duplicate 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 moreSource§impl Debug for NormalizeFunctions
impl Debug for NormalizeFunctions
Source§impl Default for NormalizeFunctions
impl Default for NormalizeFunctions
Source§fn default() -> NormalizeFunctions
fn default() -> NormalizeFunctions
Returns the “default value” for a type. Read more
Source§impl PartialEq for NormalizeFunctions
impl PartialEq for NormalizeFunctions
impl Copy for NormalizeFunctions
impl StructuralPartialEq for NormalizeFunctions
Auto Trait Implementations§
impl Freeze for NormalizeFunctions
impl RefUnwindSafe for NormalizeFunctions
impl Send for NormalizeFunctions
impl Sync for NormalizeFunctions
impl Unpin for NormalizeFunctions
impl UnwindSafe for NormalizeFunctions
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