#[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§
impl Copy for Numeric
impl Eq for Numeric
impl StructuralPartialEq for Numeric
Auto Trait Implementations§
impl Freeze for Numeric
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