pub enum FeePriority {
Unimportant,
Normal,
Elevated,
Priority,
Custom {
priority: u32,
},
}Expand description
The priority for the fee.
Higher-priority transactions will be included in blocks earlier.
Variants§
Unimportant
The Unimportant priority, as defined by Monero.
Normal
The Normal priority, as defined by Monero.
Elevated
The Elevated priority, as defined by Monero.
Priority
The Priority priority, as defined by Monero.
Custom
A custom priority.
Implementations§
Trait Implementations§
Source§impl Clone for FeePriority
impl Clone for FeePriority
Source§fn clone(&self) -> FeePriority
fn clone(&self) -> FeePriority
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 FeePriority
impl Debug for FeePriority
Source§impl PartialEq for FeePriority
impl PartialEq for FeePriority
Source§impl Zeroize for FeePriority
impl Zeroize for FeePriority
impl Copy for FeePriority
impl Eq for FeePriority
impl StructuralPartialEq for FeePriority
Auto Trait Implementations§
impl Freeze for FeePriority
impl RefUnwindSafe for FeePriority
impl Send for FeePriority
impl Sync for FeePriority
impl Unpin for FeePriority
impl UnsafeUnpin for FeePriority
impl UnwindSafe for FeePriority
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