pub struct VestingState {
pub asset_name: String,
pub asset_symbol: String,
pub remaining_vesting_quantity: i64,
pub total_installments: i64,
pub total_vesting_quantity: i64,
pub vesting_period_start: i64,
pub vesting_period_end: i64,
}
Fields§
§asset_name: String
§asset_symbol: String
§remaining_vesting_quantity: i64
§total_installments: i64
§total_vesting_quantity: i64
§vesting_period_start: i64
§vesting_period_end: i64
Trait Implementations§
Source§impl Clone for VestingState
impl Clone for VestingState
Source§fn clone(&self) -> VestingState
fn clone(&self) -> VestingState
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 VestingState
impl Debug for VestingState
Source§impl<'de> Deserialize<'de> for VestingState
impl<'de> Deserialize<'de> for VestingState
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 VestingState
impl RefUnwindSafe for VestingState
impl Send for VestingState
impl Sync for VestingState
impl Unpin for VestingState
impl UnwindSafe for VestingState
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