pub struct DecodedDecimal {
pub positive: bool,
pub exponent_positive: bool,
pub exponent: u64,
pub significand: Vec<u8>,
}Expand description
Decoded decimal with semantic fields (for when field access is needed)
Fields§
§positive: bool§exponent_positive: bool§exponent: u64§significand: Vec<u8>Trait Implementations§
Source§impl Clone for DecodedDecimal
impl Clone for DecodedDecimal
Source§fn clone(&self) -> DecodedDecimal
fn clone(&self) -> DecodedDecimal
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 Debug for DecodedDecimal
impl Debug for DecodedDecimal
Source§impl PartialEq for DecodedDecimal
impl PartialEq for DecodedDecimal
impl Eq for DecodedDecimal
impl StructuralPartialEq for DecodedDecimal
Auto Trait Implementations§
impl Freeze for DecodedDecimal
impl RefUnwindSafe for DecodedDecimal
impl Send for DecodedDecimal
impl Sync for DecodedDecimal
impl Unpin for DecodedDecimal
impl UnsafeUnpin for DecodedDecimal
impl UnwindSafe for DecodedDecimal
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