#[repr(i32)]pub enum FormatUnit {
Default = 0,
Sat = 1,
}
Variants§
Default = 0
According to coin
(BTC, LTC, etc.).
Sat = 1
Only valid for BTC/TBTC, formats as “sat”/“tsat”.
Implementations§
Source§impl FormatUnit
impl FormatUnit
Source§impl FormatUnit
impl FormatUnit
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for FormatUnit
impl Clone for FormatUnit
Source§fn clone(&self) -> FormatUnit
fn clone(&self) -> FormatUnit
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 FormatUnit
impl Debug for FormatUnit
Source§impl Default for FormatUnit
impl Default for FormatUnit
Source§fn default() -> FormatUnit
fn default() -> FormatUnit
Returns the “default value” for a type. Read more
Source§impl From<FormatUnit> for i32
impl From<FormatUnit> for i32
Source§fn from(value: FormatUnit) -> i32
fn from(value: FormatUnit) -> i32
Converts to this type from the input type.
Source§impl Hash for FormatUnit
impl Hash for FormatUnit
Source§impl Ord for FormatUnit
impl Ord for FormatUnit
Source§fn cmp(&self, other: &FormatUnit) -> Ordering
fn cmp(&self, other: &FormatUnit) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FormatUnit
impl PartialEq for FormatUnit
Source§impl PartialOrd for FormatUnit
impl PartialOrd for FormatUnit
Source§impl TryFrom<i32> for FormatUnit
impl TryFrom<i32> for FormatUnit
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<FormatUnit, UnknownEnumValue>
fn try_from(value: i32) -> Result<FormatUnit, UnknownEnumValue>
Performs the conversion.
impl Copy for FormatUnit
impl Eq for FormatUnit
impl StructuralPartialEq for FormatUnit
Auto Trait Implementations§
impl Freeze for FormatUnit
impl RefUnwindSafe for FormatUnit
impl Send for FormatUnit
impl Sync for FormatUnit
impl Unpin for FormatUnit
impl UnwindSafe for FormatUnit
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