Enum sqlparser::ast::ExactNumberInfo
source · Expand description
Additional information for NUMERIC, DECIMAL, and DEC data types
following the 2016 standard.
Variants§
None
No additional information e.g. DECIMAL
Precision(u64)
Only precision information e.g. DECIMAL(10)
PrecisionAndScale(u64, u64)
Precision and scale information e.g. DECIMAL(10,2)
Trait Implementations§
source§impl Clone for ExactNumberInfo
impl Clone for ExactNumberInfo
source§fn clone(&self) -> ExactNumberInfo
fn clone(&self) -> ExactNumberInfo
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