pub struct FundingFees<T> { /* private fields */ }
Expand description
Funding Fees.
Implementations§
Source§impl<T> FundingFees<T>
impl<T> FundingFees<T>
Sourcepub fn builder() -> FundingFeesBuilder<T, ((), (), ())>
pub fn builder() -> FundingFeesBuilder<T, ((), (), ())>
Create a builder for building FundingFees
.
On the builder, call .amount(...)
, .claimable_long_token_amount(...)
, .claimable_short_token_amount(...)
to set the values of the fields.
Finally, call .build()
to create the instance of FundingFees
.
Source§impl<T> FundingFees<T>
impl<T> FundingFees<T>
Sourcepub fn claimable_long_token_amount(&self) -> &T
pub fn claimable_long_token_amount(&self) -> &T
Get claimable long token funding fee amount.
Sourcepub fn claimable_short_token_amount(&self) -> &T
pub fn claimable_short_token_amount(&self) -> &T
Get claimable short token funding fee amount.
Trait Implementations§
Source§impl<T> BorshDeserialize for FundingFees<T>where
T: BorshDeserialize,
impl<T> BorshDeserialize for FundingFees<T>where
T: BorshDeserialize,
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl<T> BorshSerialize for FundingFees<T>where
T: BorshSerialize,
impl<T> BorshSerialize for FundingFees<T>where
T: BorshSerialize,
Source§impl<T: Clone> Clone for FundingFees<T>
impl<T: Clone> Clone for FundingFees<T>
Source§fn clone(&self) -> FundingFees<T>
fn clone(&self) -> FundingFees<T>
Returns a copy 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<T: Debug> Debug for FundingFees<T>
impl<T: Debug> Debug for FundingFees<T>
Source§impl<T: Zero> Default for FundingFees<T>
impl<T: Zero> Default for FundingFees<T>
Source§impl<'de, T> Deserialize<'de> for FundingFees<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for FundingFees<T>where
T: Deserialize<'de>,
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<T: InitSpace> InitSpace for FundingFees<T>
impl<T: InitSpace> InitSpace for FundingFees<T>
Source§const INIT_SPACE: usize
const INIT_SPACE: usize
Init Space.
Source§impl<T> Serialize for FundingFees<T>where
T: Serialize,
impl<T> Serialize for FundingFees<T>where
T: Serialize,
impl<T: Copy> Copy for FundingFees<T>
Auto Trait Implementations§
impl<T> Freeze for FundingFees<T>where
T: Freeze,
impl<T> RefUnwindSafe for FundingFees<T>where
T: RefUnwindSafe,
impl<T> Send for FundingFees<T>where
T: Send,
impl<T> Sync for FundingFees<T>where
T: Sync,
impl<T> Unpin for FundingFees<T>where
T: Unpin,
impl<T> UnwindSafe for FundingFees<T>where
T: UnwindSafe,
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> 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