[][src]Struct stellar_base::amount::Amount

pub struct Amount(_);

Amount in base units. For example, 2 XLM.

Implementations

impl Amount[src]

pub fn from_stroops(stroops: &Stroops) -> Result<Amount>[src]

Creates from amount specified in stroops.

pub fn checked_add(&self, other: &Amount) -> Option<Amount>[src]

Checked addition. Computes self + other, returning None if overflow occurred.

pub fn checked_sub(&self, other: &Amount) -> Option<Amount>[src]

Checked subtraction. Computes self - other, returning None if overflow occurred.

pub fn checked_mul(&self, other: &Amount) -> Option<Amount>[src]

Checked multiplication. Computes self * other, returning None if overflow occurred.

pub fn checked_div(&self, other: &Amount) -> Option<Amount>[src]

Checked division. Computes self / other, returning None if overflow occurred or other == 0.0.

pub fn checked_rem(&self, other: &Amount) -> Option<Amount>[src]

Checked division. Computes self % other, returning None if overflow occurred or other == 0.0.

pub fn to_stroops(&self) -> Result<Stroops>[src]

Returns the equivalent amount in stroops.

Trait Implementations

impl Clone for Amount[src]

impl Debug for Amount[src]

impl Display for Amount[src]

impl Eq for Amount[src]

impl FromStr for Amount[src]

type Err = Error

The associated error which can be returned from parsing.

impl Ord for Amount[src]

impl PartialEq<Amount> for Amount[src]

impl PartialOrd<Amount> for Amount[src]

impl StructuralEq for Amount[src]

impl StructuralPartialEq for Amount[src]

impl TryFrom<Amount> for Stroops[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Stroops> for Amount[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Amount

impl Send for Amount

impl Sync for Amount

impl Unpin for Amount

impl UnwindSafe for Amount

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.