#[non_exhaustive]pub enum Denomination {
Bitcoin,
CentiBitcoin,
MilliBitcoin,
MicroBitcoin,
NanoBitcoin,
PicoBitcoin,
Bit,
Satoshi,
MilliSatoshi,
}
Expand description
A set of denominations in which amounts can be expressed.
§Examples
assert_eq!(Amount::from_str("1 BTC").unwrap(), Amount::from_sat(100_000_000));
assert_eq!(Amount::from_str("1 cBTC").unwrap(), Amount::from_sat(1_000_000));
assert_eq!(Amount::from_str("1 mBTC").unwrap(), Amount::from_sat(100_000));
assert_eq!(Amount::from_str("1 uBTC").unwrap(), Amount::from_sat(100));
assert_eq!(Amount::from_str("10 nBTC").unwrap(), Amount::from_sat(1));
assert_eq!(Amount::from_str("10000 pBTC").unwrap(), Amount::from_sat(1));
assert_eq!(Amount::from_str("1 bit").unwrap(), Amount::from_sat(100));
assert_eq!(Amount::from_str("1 sat").unwrap(), Amount::from_sat(1));
assert_eq!(Amount::from_str("1000 msats").unwrap(), Amount::from_sat(1));
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bitcoin
BTC
CentiBitcoin
cBTC
MilliBitcoin
mBTC
MicroBitcoin
uBTC
NanoBitcoin
nBTC
PicoBitcoin
pBTC
Bit
bits
Satoshi
satoshi
MilliSatoshi
msat
Implementations§
Source§impl Denomination
impl Denomination
Sourcepub const BTC: Denomination = Denomination::Bitcoin
pub const BTC: Denomination = Denomination::Bitcoin
Convenience alias for Denomination::Bitcoin
.
Sourcepub const SAT: Denomination = Denomination::Satoshi
pub const SAT: Denomination = Denomination::Satoshi
Convenience alias for Denomination::Satoshi
.
Trait Implementations§
Source§impl Clone for Denomination
impl Clone for Denomination
Source§fn clone(&self) -> Denomination
fn clone(&self) -> Denomination
Returns a copy 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 Denomination
impl Debug for Denomination
Source§impl Display for Denomination
impl Display for Denomination
Source§impl FromStr for Denomination
impl FromStr for Denomination
Source§fn from_str(s: &str) -> Result<Denomination, <Denomination as FromStr>::Err>
fn from_str(s: &str) -> Result<Denomination, <Denomination as FromStr>::Err>
Convert from a str to Denomination.
Any combination of upper and/or lower case, excluding uppercase of SI(m, u, n, p) is considered valid.
- Singular: BTC, mBTC, uBTC, nBTC, pBTC
- Plural or singular: sat, satoshi, bit, msat
Due to ambiguity between mega and milli, pico and peta we prohibit usage of leading capital ‘M’, ‘P’.
Source§type Err = ParseDenominationError
type Err = ParseDenominationError
The associated error which can be returned from parsing.
Source§impl Hash for Denomination
impl Hash for Denomination
Source§impl PartialEq for Denomination
impl PartialEq for Denomination
impl Copy for Denomination
impl Eq for Denomination
impl StructuralPartialEq for Denomination
Auto Trait Implementations§
impl Freeze for Denomination
impl RefUnwindSafe for Denomination
impl Send for Denomination
impl Sync for Denomination
impl Unpin for Denomination
impl UnwindSafe for Denomination
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