pub struct BoardFees {
pub min_fee: Amount,
pub base_fee: Amount,
pub ppm: PpmFeeRate,
}Expand description
Fees for boarding the ark.
Fields§
§min_fee: AmountMinimum fee to charge.
base_fee: AmountA fee applied to every transaction regardless of value.
ppm: PpmFeeRatePPM (parts per million) fee rate to apply based on the value of the transaction.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BoardFees
impl<'de> Deserialize<'de> for BoardFees
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
impl Copy for BoardFees
impl Eq for BoardFees
impl StructuralPartialEq for BoardFees
Auto Trait Implementations§
impl Freeze for BoardFees
impl RefUnwindSafe for BoardFees
impl Send for BoardFees
impl Sync for BoardFees
impl Unpin for BoardFees
impl UnsafeUnpin for BoardFees
impl UnwindSafe for BoardFees
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