pub struct LockedVestingParam {
pub total_locked_vesting_amount: f64,
pub cliff_unlock_amount: f64,
pub number_of_vesting_period: f64,
pub total_vesting_duration: i64,
pub cliff_duration_from_migration_time: i64,
}Fields§
§total_locked_vesting_amount: f64§cliff_unlock_amount: f64§number_of_vesting_period: f64§total_vesting_duration: i64§cliff_duration_from_migration_time: i64Trait Implementations§
Source§impl Debug for LockedVestingParam
impl Debug for LockedVestingParam
Source§impl<'de> Deserialize<'de> for LockedVestingParam
impl<'de> Deserialize<'de> for LockedVestingParam
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
Auto Trait Implementations§
impl Freeze for LockedVestingParam
impl RefUnwindSafe for LockedVestingParam
impl Send for LockedVestingParam
impl Sync for LockedVestingParam
impl Unpin for LockedVestingParam
impl UnsafeUnpin for LockedVestingParam
impl UnwindSafe for LockedVestingParam
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