pub struct StudioCreateDBCTransactionRequestBodyLockedVestingParam {
pub cliff_duration_from_migration_time: f64,
pub cliff_unlock_amount: f64,
pub number_of_vesting_period: f64,
pub total_locked_vesting_amount: f64,
pub total_vesting_duration: f64,
}Fields§
§cliff_duration_from_migration_time: f64- Cliff duration from migration time in seconds
cliff_unlock_amount: f64- Amount of tokens unlocked at cliff
number_of_vesting_period: f64- Number of vesting periods in days (183/365) or months (6/12)
total_locked_vesting_amount: f64- Total locked vesting amount of tokens (0% to 80% of total supply)
total_vesting_duration: f64- Total vesting duration in seconds
Trait Implementations§
Source§impl Clone for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl Clone for StudioCreateDBCTransactionRequestBodyLockedVestingParam
Source§fn clone(&self) -> StudioCreateDBCTransactionRequestBodyLockedVestingParam
fn clone(&self) -> StudioCreateDBCTransactionRequestBodyLockedVestingParam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl<'de> Deserialize<'de> for StudioCreateDBCTransactionRequestBodyLockedVestingParam
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 StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl RefUnwindSafe for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl Send for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl Sync for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl Unpin for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl UnsafeUnpin for StudioCreateDBCTransactionRequestBodyLockedVestingParam
impl UnwindSafe for StudioCreateDBCTransactionRequestBodyLockedVestingParam
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