pub struct CachedFees {
pub creator_fee: f64,
pub insurance_fee: f64,
pub lp_fee: f64,
pub liquidation_fee: f64,
}Expand description
Cached fee configuration for a perpetual market.
Fields§
§creator_fee: f64Creator fee (e.g. 0.001 = 0.1%).
insurance_fee: f64Insurance fund fee.
lp_fee: f64LP fee.
liquidation_fee: f64Liquidation fee.
Trait Implementations§
Source§impl Clone for CachedFees
impl Clone for CachedFees
Source§fn clone(&self) -> CachedFees
fn clone(&self) -> CachedFees
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 CachedFees
impl Debug for CachedFees
Source§impl From<CachedFees> for Fees
impl From<CachedFees> for Fees
Source§fn from(c: CachedFees) -> Self
fn from(c: CachedFees) -> Self
Converts to this type from the input type.
Source§impl From<Fees> for CachedFees
impl From<Fees> for CachedFees
Source§impl PartialEq for CachedFees
impl PartialEq for CachedFees
impl Copy for CachedFees
impl StructuralPartialEq for CachedFees
Auto Trait Implementations§
impl Freeze for CachedFees
impl RefUnwindSafe for CachedFees
impl Send for CachedFees
impl Sync for CachedFees
impl Unpin for CachedFees
impl UnsafeUnpin for CachedFees
impl UnwindSafe for CachedFees
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