pub struct ArbitraryPrecisionNumericAttr {
pub precision: Option<u16>,
pub scale: Option<u16>,
}
Available on crate features
postgres
and def
only.Expand description
The precision (number of significan digits) and scale (the number of digits in the fractional portion) of an arbitrary precision number (numeric or decimal). When both the precision and scale are not set, any precision or scale up to the implementation limit may be stored.
Fields§
§precision: Option<u16>
The number of significant digits in the number; a maximum of 1000 when specified
scale: Option<u16>
The count of decimal digits in the fractional part; integers have a scale of 0
Trait Implementations§
Source§impl Clone for ArbitraryPrecisionNumericAttr
impl Clone for ArbitraryPrecisionNumericAttr
Source§fn clone(&self) -> ArbitraryPrecisionNumericAttr
fn clone(&self) -> ArbitraryPrecisionNumericAttr
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 Default for ArbitraryPrecisionNumericAttr
impl Default for ArbitraryPrecisionNumericAttr
Source§fn default() -> ArbitraryPrecisionNumericAttr
fn default() -> ArbitraryPrecisionNumericAttr
Returns the “default value” for a type. Read more
Source§impl PartialEq for ArbitraryPrecisionNumericAttr
impl PartialEq for ArbitraryPrecisionNumericAttr
Source§fn eq(&self, other: &ArbitraryPrecisionNumericAttr) -> bool
fn eq(&self, other: &ArbitraryPrecisionNumericAttr) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ArbitraryPrecisionNumericAttr
Auto Trait Implementations§
impl Freeze for ArbitraryPrecisionNumericAttr
impl RefUnwindSafe for ArbitraryPrecisionNumericAttr
impl Send for ArbitraryPrecisionNumericAttr
impl Sync for ArbitraryPrecisionNumericAttr
impl Unpin for ArbitraryPrecisionNumericAttr
impl UnwindSafe for ArbitraryPrecisionNumericAttr
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