pub struct FeeConfig {
pub state_merkle_tree_rollover: u64,
pub address_queue_rollover: u64,
pub network_fee: u64,
pub address_network_fee: u64,
pub solana_network_fee: i64,
}Fields§
§state_merkle_tree_rollover: u64§address_queue_rollover: u64§network_fee: u64§address_network_fee: u64§solana_network_fee: i64Implementations§
Source§impl FeeConfig
impl FeeConfig
pub fn test_batched() -> Self
Trait Implementations§
impl StructuralPartialEq for FeeConfig
Auto Trait Implementations§
impl Freeze for FeeConfig
impl RefUnwindSafe for FeeConfig
impl Send for FeeConfig
impl Sync for FeeConfig
impl Unpin for FeeConfig
impl UnwindSafe for FeeConfig
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<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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more