#[repr(C)]pub struct Numeric {
pub precision: Char,
pub scale: SChar,
pub sign: Char,
pub val: [Char; 16],
}
Fields§
§precision: Char
§scale: SChar
Number of decimal digits to the right of the decimal point.
sign: Char
1 if positive, 0 if negative
val: [Char; 16]
Trait Implementations§
source§impl PartialEq for Numeric
impl PartialEq for Numeric
impl Copy for Numeric
impl Eq for Numeric
impl StructuralEq for Numeric
impl StructuralPartialEq for Numeric
Auto Trait Implementations§
impl RefUnwindSafe for Numeric
impl Send for Numeric
impl Sync for Numeric
impl Unpin for Numeric
impl UnwindSafe for Numeric
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