[][src]Struct bitcoin::util::decimal::Decimal

pub struct Decimal { /* fields omitted */ }

A fixed-point decimal type

Methods

impl Decimal[src]

pub fn new(mantissa: i64, exponent: usize) -> Decimal[src]

Creates a new Decimal

pub fn mantissa(&self) -> i64[src]

Returns the mantissa

pub fn exponent(&self) -> usize[src]

Returns the exponent

pub fn integer_value(&self, exponent: usize) -> i64[src]

Get the decimal's value in an integer type, by multiplying by some power of ten to ensure the returned value is 10 ** exponent types the actual value.

pub fn nonnegative(&self) -> bool[src]

Returns whether or not the number is nonnegative

Trait Implementations

impl Eq for Decimal[src]

impl Clone for Decimal[src]

impl PartialOrd<Decimal> for Decimal[src]

impl Ord for Decimal[src]

impl PartialEq<Decimal> for Decimal[src]

impl Copy for Decimal[src]

impl Add<Decimal> for Decimal[src]

type Output = Decimal

The resulting type after applying the + operator.

impl Sub<Decimal> for Decimal[src]

type Output = Decimal

The resulting type after applying the - operator.

impl Neg for Decimal[src]

type Output = Decimal

The resulting type after applying the - operator.

impl Display for Decimal[src]

impl Debug for Decimal[src]

Auto Trait Implementations

impl Sync for Decimal

impl Send for Decimal

impl Unpin for Decimal

impl UnwindSafe for Decimal

impl RefUnwindSafe for Decimal

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]