pub struct MainnetRepaymentPeriod {
pub waterfall_index: u64,
pub accrual_in_days: u32,
pub principal_expected: Option<u64>,
pub time_frame: TimeFrame,
pub calculation_waterfall_index: u64,
}Fields§
§waterfall_index: u64§accrual_in_days: u32§principal_expected: Option<u64>§time_frame: TimeFrame§calculation_waterfall_index: u64Trait Implementations§
Source§impl BorshDeserialize for MainnetRepaymentPeriodwhere
u64: BorshDeserialize,
u32: BorshDeserialize,
Option<u64>: BorshDeserialize,
TimeFrame: BorshDeserialize,
impl BorshDeserialize for MainnetRepaymentPeriodwhere
u64: BorshDeserialize,
u32: BorshDeserialize,
Option<u64>: BorshDeserialize,
TimeFrame: BorshDeserialize,
Source§impl BorshSerialize for MainnetRepaymentPeriodwhere
u64: BorshSerialize,
u32: BorshSerialize,
Option<u64>: BorshSerialize,
TimeFrame: BorshSerialize,
impl BorshSerialize for MainnetRepaymentPeriodwhere
u64: BorshSerialize,
u32: BorshSerialize,
Option<u64>: BorshSerialize,
TimeFrame: BorshSerialize,
Source§impl Clone for MainnetRepaymentPeriod
impl Clone for MainnetRepaymentPeriod
Source§fn clone(&self) -> MainnetRepaymentPeriod
fn clone(&self) -> MainnetRepaymentPeriod
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 MainnetRepaymentPeriod
impl Debug for MainnetRepaymentPeriod
Source§impl Default for MainnetRepaymentPeriod
impl Default for MainnetRepaymentPeriod
Source§fn default() -> MainnetRepaymentPeriod
fn default() -> MainnetRepaymentPeriod
Returns the “default value” for a type. Read more
impl Copy for MainnetRepaymentPeriod
Auto Trait Implementations§
impl Freeze for MainnetRepaymentPeriod
impl RefUnwindSafe for MainnetRepaymentPeriod
impl Send for MainnetRepaymentPeriod
impl Sync for MainnetRepaymentPeriod
impl Unpin for MainnetRepaymentPeriod
impl UnwindSafe for MainnetRepaymentPeriod
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