#[repr(u8)]pub enum WithdrawalPriorityLevel {
VeryLow = 0,
Low = 1,
Mid = 2,
High = 3,
VeryHigh = 4,
ExtremeHigh = 5,
Insane = 6,
}Expand description
Withdrawal priority level for blockchain transactions.
Higher priority levels result in faster transaction confirmation but incur higher fees.
Variants§
VeryLow = 0
Lowest priority with minimal fees
Low = 1
Low priority
Mid = 2
Medium priority (default for most currencies)
High = 3
High priority (default for BTC)
VeryHigh = 4
Very high priority
ExtremeHigh = 5
Extreme high priority
Insane = 6
Insane priority with maximum fees for fastest confirmation
Implementations§
Trait Implementations§
Source§impl Clone for WithdrawalPriorityLevel
impl Clone for WithdrawalPriorityLevel
Source§fn clone(&self) -> WithdrawalPriorityLevel
fn clone(&self) -> WithdrawalPriorityLevel
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 WithdrawalPriorityLevel
impl Debug for WithdrawalPriorityLevel
Source§impl Default for WithdrawalPriorityLevel
impl Default for WithdrawalPriorityLevel
Source§fn default() -> WithdrawalPriorityLevel
fn default() -> WithdrawalPriorityLevel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WithdrawalPriorityLevel
impl<'de> Deserialize<'de> for WithdrawalPriorityLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for WithdrawalPriorityLevel
impl Display for WithdrawalPriorityLevel
Source§impl PartialEq for WithdrawalPriorityLevel
impl PartialEq for WithdrawalPriorityLevel
Source§impl Serialize for WithdrawalPriorityLevel
impl Serialize for WithdrawalPriorityLevel
impl Copy for WithdrawalPriorityLevel
impl Eq for WithdrawalPriorityLevel
impl StructuralPartialEq for WithdrawalPriorityLevel
Auto Trait Implementations§
impl Freeze for WithdrawalPriorityLevel
impl RefUnwindSafe for WithdrawalPriorityLevel
impl Send for WithdrawalPriorityLevel
impl Sync for WithdrawalPriorityLevel
impl Unpin for WithdrawalPriorityLevel
impl UnsafeUnpin for WithdrawalPriorityLevel
impl UnwindSafe for WithdrawalPriorityLevel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.