pub struct LockBody {
pub sender: String,
pub beneficiary: String,
pub asset_policy_id: String,
pub asset_token_name: String,
pub total_vesting_quantity: i64,
pub vesting_period_start: i64,
pub vesting_period_end: i64,
pub first_unlock_possible_after: i64,
pub total_installments: i64,
}
Fields§
§sender: String
§beneficiary: String
§asset_policy_id: String
§asset_token_name: String
§total_vesting_quantity: i64
§vesting_period_start: i64
§vesting_period_end: i64
§first_unlock_possible_after: i64
§total_installments: i64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LockBody
impl<'de> Deserialize<'de> for LockBody
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 LockBody
impl RefUnwindSafe for LockBody
impl Send for LockBody
impl Sync for LockBody
impl Unpin for LockBody
impl UnwindSafe for LockBody
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