Struct DecimalParts
#[repr(C)]pub struct DecimalParts {
pub mantissa: i64,
pub exponent: i32,
}Expand description
Decimal value represented as mantissa and exponent Used for precise decimal arithmetic in FIX messages
Fields§
§mantissa: i64§exponent: i32Trait Implementations§
§impl Clone for DecimalParts
impl Clone for DecimalParts
§impl Debug for DecimalParts
impl Debug for DecimalParts
§impl ExternType for DecimalParts
impl ExternType for DecimalParts
§impl PartialEq for DecimalParts
impl PartialEq for DecimalParts
impl Copy for DecimalParts
impl Eq for DecimalParts
impl StructuralPartialEq for DecimalParts
Auto Trait Implementations§
impl Freeze for DecimalParts
impl RefUnwindSafe for DecimalParts
impl Send for DecimalParts
impl Sync for DecimalParts
impl Unpin for DecimalParts
impl UnwindSafe for DecimalParts
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