pub struct SignedAmount(/* private fields */);
Expand description
A signed amount.
The SignedAmount
type can be used to express Bitcoin amounts that support
arithmetic and conversion to various denominations.
Warning!
This type implements several arithmetic operations from core::ops
.
To prevent errors due to overflow or underflow when using these operations,
it is advised to instead use the checked arithmetic methods whose names
start with checked_
. The operations from core::ops
that Amount
implements will panic when overflow or underflow occurs.
Implementations§
source§impl SignedAmount
impl SignedAmount
sourcepub const ZERO: SignedAmount = _
pub const ZERO: SignedAmount = _
The zero amount.
sourcepub const ONE_SAT: SignedAmount = _
pub const ONE_SAT: SignedAmount = _
Exactly one satoshi.
sourcepub const ONE_BTC: SignedAmount = _
pub const ONE_BTC: SignedAmount = _
Exactly one bitcoin.
sourcepub const MAX_MONEY: SignedAmount = _
pub const MAX_MONEY: SignedAmount = _
The maximum value allowed as an amount. Useful for sanity checking.
sourcepub const MIN: SignedAmount = _
pub const MIN: SignedAmount = _
The minimum value of an amount.
sourcepub const MAX: SignedAmount = _
pub const MAX: SignedAmount = _
The maximum value of an amount.
sourcepub const fn from_sat(satoshi: i64) -> SignedAmount
pub const fn from_sat(satoshi: i64) -> SignedAmount
Create an SignedAmount
with satoshi precision and the given number of satoshis.
sourcepub fn to_sat(self) -> i64
pub fn to_sat(self) -> i64
Gets the number of satoshis in this SignedAmount
.
sourcepub fn from_btc(btc: f64) -> Result<SignedAmount, ParseAmountError>
Available on crate feature alloc
only.
pub fn from_btc(btc: f64) -> Result<SignedAmount, ParseAmountError>
alloc
only.Convert from a value expressing bitcoins to an SignedAmount
.
sourcepub fn from_str_in(
s: &str,
denom: Denomination,
) -> Result<SignedAmount, ParseAmountError>
pub fn from_str_in( s: &str, denom: Denomination, ) -> Result<SignedAmount, ParseAmountError>
Parse a decimal string as a value in the given denomination.
Note: This only parses the value string. If you want to parse a value
with denomination, use FromStr
.
sourcepub fn from_str_with_denomination(s: &str) -> Result<SignedAmount, ParseError>
pub fn from_str_with_denomination(s: &str) -> Result<SignedAmount, ParseError>
Parses amounts with denomination suffix like they are produced with
Self::to_string_with_denomination
or with fmt::Display
.
If you want to parse only the amount without the denomination,
use Self::from_str_in
.
sourcepub fn to_float_in(self, denom: Denomination) -> f64
Available on crate feature alloc
only.
pub fn to_float_in(self, denom: Denomination) -> f64
alloc
only.Express this SignedAmount
as a floating-point value in the given denomination.
Please be aware of the risk of using floating-point numbers.
sourcepub fn to_btc(self) -> f64
Available on crate feature alloc
only.
pub fn to_btc(self) -> f64
alloc
only.Express this SignedAmount
as a floating-point value in Bitcoin.
Equivalent to to_float_in(Denomination::Bitcoin)
.
Please be aware of the risk of using floating-point numbers.
sourcepub fn from_float_in(
value: f64,
denom: Denomination,
) -> Result<SignedAmount, ParseAmountError>
Available on crate feature alloc
only.
pub fn from_float_in( value: f64, denom: Denomination, ) -> Result<SignedAmount, ParseAmountError>
alloc
only.Convert this SignedAmount
in floating-point notation with a given
denomination.
§Errors
If the amount is too big, too precise or negative.
Please be aware of the risk of using floating-point numbers.
sourcepub fn display_in(self, denomination: Denomination) -> Display
pub fn display_in(self, denomination: Denomination) -> Display
Create an object that implements fmt::Display
using specified denomination.
sourcepub fn display_dynamic(self) -> Display
pub fn display_dynamic(self) -> Display
Create an object that implements fmt::Display
dynamically selecting denomination.
This will use BTC for values greater than or equal to 1 BTC and satoshis otherwise. To avoid confusion the denomination is always shown.
sourcepub fn fmt_value_in(self, f: &mut dyn Write, denom: Denomination) -> Result
👎Deprecating in a future version: Use display_in()
instead
pub fn fmt_value_in(self, f: &mut dyn Write, denom: Denomination) -> Result
display_in()
insteadFormat the value of this SignedAmount
in the given denomination.
Does not include the denomination.
sourcepub fn to_string_in(self, denom: Denomination) -> String
Available on crate feature alloc
only.
pub fn to_string_in(self, denom: Denomination) -> String
alloc
only.Get a string number of this SignedAmount
in the given denomination.
Does not include the denomination.
sourcepub fn to_string_with_denomination(self, denom: Denomination) -> String
Available on crate feature alloc
only.
pub fn to_string_with_denomination(self, denom: Denomination) -> String
alloc
only.Get a formatted string of this SignedAmount
in the given denomination,
suffixed with the abbreviation for the denomination.
sourcepub fn abs(self) -> SignedAmount
pub fn abs(self) -> SignedAmount
Get the absolute value of this SignedAmount
.
sourcepub fn unsigned_abs(self) -> Amount
pub fn unsigned_abs(self) -> Amount
Get the absolute value of this SignedAmount
returning Amount
.
sourcepub fn signum(self) -> i64
pub fn signum(self) -> i64
Returns a number representing sign of this SignedAmount
.
0
if the amount is zero1
if the amount is positive-1
if the amount is negative
sourcepub fn is_positive(self) -> bool
pub fn is_positive(self) -> bool
Checks if this SignedAmount
is positive.
Returns true
if this SignedAmount
is positive and false
if
this SignedAmount
is zero or negative.
sourcepub fn is_negative(self) -> bool
pub fn is_negative(self) -> bool
Checks if this SignedAmount
is negative.
Returns true
if this SignedAmount
is negative and false
if
this SignedAmount
is zero or positive.
sourcepub fn checked_abs(self) -> Option<SignedAmount>
pub fn checked_abs(self) -> Option<SignedAmount>
Returns the absolute value of this SignedAmount
.
Consider using unsigned_abs
which is often more practical.
Returns None
if overflow occurred. (self == MIN
)
sourcepub fn checked_add(self, rhs: SignedAmount) -> Option<SignedAmount>
pub fn checked_add(self, rhs: SignedAmount) -> Option<SignedAmount>
Checked addition.
Returns None
if overflow occurred.
sourcepub fn checked_sub(self, rhs: SignedAmount) -> Option<SignedAmount>
pub fn checked_sub(self, rhs: SignedAmount) -> Option<SignedAmount>
Checked subtraction.
Returns None
if overflow occurred.
sourcepub fn checked_mul(self, rhs: i64) -> Option<SignedAmount>
pub fn checked_mul(self, rhs: i64) -> Option<SignedAmount>
Checked multiplication.
Returns None
if overflow occurred.
sourcepub fn checked_div(self, rhs: i64) -> Option<SignedAmount>
pub fn checked_div(self, rhs: i64) -> Option<SignedAmount>
Checked integer division.
Be aware that integer division loses the remainder if no exact division can be made.
Returns None
if overflow occurred.
sourcepub fn checked_rem(self, rhs: i64) -> Option<SignedAmount>
pub fn checked_rem(self, rhs: i64) -> Option<SignedAmount>
Checked remainder.
Returns None
if overflow occurred.
sourcepub fn unchecked_add(self, rhs: SignedAmount) -> SignedAmount
pub fn unchecked_add(self, rhs: SignedAmount) -> SignedAmount
Unchecked addition.
Computes self + rhs
.
§Panics
On overflow, panics in debug mode, wraps in release mode.
sourcepub fn unchecked_sub(self, rhs: SignedAmount) -> SignedAmount
pub fn unchecked_sub(self, rhs: SignedAmount) -> SignedAmount
Unchecked subtraction.
Computes self - rhs
.
§Panics
On overflow, panics in debug mode, wraps in release mode.
sourcepub fn positive_sub(self, rhs: SignedAmount) -> Option<SignedAmount>
pub fn positive_sub(self, rhs: SignedAmount) -> Option<SignedAmount>
Subtraction that doesn’t allow negative SignedAmount
s.
Returns None
if either self
, rhs
or the result is strictly negative.
sourcepub fn to_unsigned(self) -> Result<Amount, OutOfRangeError>
pub fn to_unsigned(self) -> Result<Amount, OutOfRangeError>
Converts to an unsigned amount.
Trait Implementations§
source§impl Add for SignedAmount
impl Add for SignedAmount
source§type Output = SignedAmount
type Output = SignedAmount
+
operator.source§impl AddAssign for SignedAmount
impl AddAssign for SignedAmount
source§fn add_assign(&mut self, other: SignedAmount)
fn add_assign(&mut self, other: SignedAmount)
+=
operation. Read moresource§impl<'a> Arbitrary<'a> for SignedAmount
Available on crate feature arbitrary
only.
impl<'a> Arbitrary<'a> for SignedAmount
arbitrary
only.source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Self
from the entirety of the given
unstructured data. Read moresource§impl<T> CheckedSum<SignedAmount> for Twhere
T: Iterator<Item = SignedAmount>,
impl<T> CheckedSum<SignedAmount> for Twhere
T: Iterator<Item = SignedAmount>,
source§fn checked_sum(self) -> Option<SignedAmount>
fn checked_sum(self) -> Option<SignedAmount>
None
.source§impl Clone for SignedAmount
impl Clone for SignedAmount
source§fn clone(&self) -> SignedAmount
fn clone(&self) -> SignedAmount
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SignedAmount
impl Debug for SignedAmount
source§impl Default for SignedAmount
impl Default for SignedAmount
source§impl Display for SignedAmount
impl Display for SignedAmount
source§impl Div<i64> for SignedAmount
impl Div<i64> for SignedAmount
source§impl DivAssign<i64> for SignedAmount
impl DivAssign<i64> for SignedAmount
source§fn div_assign(&mut self, rhs: i64)
fn div_assign(&mut self, rhs: i64)
/=
operation. Read moresource§impl FromStr for SignedAmount
impl FromStr for SignedAmount
source§fn from_str(s: &str) -> Result<Self, Self::Err>
fn from_str(s: &str) -> Result<Self, Self::Err>
Parses a string slice where the slice includes a denomination.
If the string slice is zero or negative zero, then no denomination is required.
§Returns
Ok(Amount)
if the string amount and denomination parse successfully,
otherwise, return Err(ParseError)
.
source§type Err = ParseError
type Err = ParseError
source§impl Hash for SignedAmount
impl Hash for SignedAmount
source§impl Mul<i64> for SignedAmount
impl Mul<i64> for SignedAmount
source§impl MulAssign<i64> for SignedAmount
impl MulAssign<i64> for SignedAmount
source§fn mul_assign(&mut self, rhs: i64)
fn mul_assign(&mut self, rhs: i64)
*=
operation. Read moresource§impl Neg for SignedAmount
impl Neg for SignedAmount
source§impl Ord for SignedAmount
impl Ord for SignedAmount
source§fn cmp(&self, other: &SignedAmount) -> Ordering
fn cmp(&self, other: &SignedAmount) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for SignedAmount
impl PartialEq for SignedAmount
source§impl PartialOrd for SignedAmount
impl PartialOrd for SignedAmount
source§impl Rem<i64> for SignedAmount
impl Rem<i64> for SignedAmount
source§impl RemAssign<i64> for SignedAmount
impl RemAssign<i64> for SignedAmount
source§fn rem_assign(&mut self, modulus: i64)
fn rem_assign(&mut self, modulus: i64)
%=
operation. Read moresource§impl SerdeAmount for SignedAmount
Available on crate feature serde
only.
impl SerdeAmount for SignedAmount
serde
only.source§impl SerdeAmountForOpt for SignedAmount
Available on crate feature serde
only.
impl SerdeAmountForOpt for SignedAmount
serde
only.fn type_prefix(_: Token) -> &'static str
fn ser_sat_opt<S: Serializer>(self, s: S, _: Token) -> Result<S::Ok, S::Error>
source§fn ser_btc_opt<S: Serializer>(self, s: S, _: Token) -> Result<S::Ok, S::Error>
fn ser_btc_opt<S: Serializer>(self, s: S, _: Token) -> Result<S::Ok, S::Error>
alloc
only.source§impl Sub for SignedAmount
impl Sub for SignedAmount
source§type Output = SignedAmount
type Output = SignedAmount
-
operator.source§impl SubAssign for SignedAmount
impl SubAssign for SignedAmount
source§fn sub_assign(&mut self, other: SignedAmount)
fn sub_assign(&mut self, other: SignedAmount)
-=
operation. Read moresource§impl Sum for SignedAmount
impl Sum for SignedAmount
source§impl TryFrom<Amount> for SignedAmount
impl TryFrom<Amount> for SignedAmount
source§impl TryFrom<SignedAmount> for Amount
impl TryFrom<SignedAmount> for Amount
source§type Error = OutOfRangeError
type Error = OutOfRangeError
impl Copy for SignedAmount
impl Eq for SignedAmount
impl StructuralPartialEq for SignedAmount
Auto Trait Implementations§
impl Freeze for SignedAmount
impl RefUnwindSafe for SignedAmount
impl Send for SignedAmount
impl Sync for SignedAmount
impl Unpin for SignedAmount
impl UnwindSafe for SignedAmount
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)