pub struct DistributePositionImpactReport<T> { /* private fields */ }
Expand description
Distribute Position Impact Report.
Implementations§
Source§impl<T> DistributePositionImpactReport<T>
impl<T> DistributePositionImpactReport<T>
Sourcepub fn duration_in_seconds(&self) -> u64
pub fn duration_in_seconds(&self) -> u64
Get considered duration in seconds.
Sourcepub fn distribution_amount(&self) -> &T
pub fn distribution_amount(&self) -> &T
Get distribution amount.
Sourcepub fn next_position_impact_pool_amount(&self) -> &T
pub fn next_position_impact_pool_amount(&self) -> &T
Get Next position impact pool amount.
Trait Implementations§
Source§impl<T> BorshDeserialize for DistributePositionImpactReport<T>where
u64: BorshDeserialize,
T: BorshDeserialize,
impl<T> BorshDeserialize for DistributePositionImpactReport<T>where
u64: BorshDeserialize,
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 DistributePositionImpactReport<T>where
u64: BorshSerialize,
T: BorshSerialize,
impl<T> BorshSerialize for DistributePositionImpactReport<T>where
u64: BorshSerialize,
T: BorshSerialize,
Source§impl<T: Debug> Debug for DistributePositionImpactReport<T>
impl<T: Debug> Debug for DistributePositionImpactReport<T>
Source§impl<T: InitSpace> InitSpace for DistributePositionImpactReport<T>
impl<T: InitSpace> InitSpace for DistributePositionImpactReport<T>
Source§const INIT_SPACE: usize
const INIT_SPACE: usize
Init Space.
Auto Trait Implementations§
impl<T> Freeze for DistributePositionImpactReport<T>where
T: Freeze,
impl<T> RefUnwindSafe for DistributePositionImpactReport<T>where
T: RefUnwindSafe,
impl<T> Send for DistributePositionImpactReport<T>where
T: Send,
impl<T> Sync for DistributePositionImpactReport<T>where
T: Sync,
impl<T> Unpin for DistributePositionImpactReport<T>where
T: Unpin,
impl<T> UnwindSafe for DistributePositionImpactReport<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> 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