1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use crate::error::{Error, Result};
use crate::model::AssetId;
use crate::util::JsonDeserializer;
use serde_json::Value;
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct BurnAction {
asset_id: AssetId,
amount: u64,
}
impl BurnAction {
pub fn new(asset_id: AssetId, amount: u64) -> BurnAction {
BurnAction { asset_id, amount }
}
pub fn asset_id(&self) -> AssetId {
self.asset_id.clone()
}
pub fn amount(&self) -> u64 {
self.amount
}
}
impl TryFrom<&Value> for BurnAction {
type Error = Error;
fn try_from(value: &Value) -> Result<Self> {
let asset = JsonDeserializer::safe_to_string_from_field(value, "assetId")?;
let amount = JsonDeserializer::safe_to_int_from_field(value, "quantity")?;
Ok(BurnAction {
asset_id: AssetId::from_string(&asset)?,
amount: amount as u64,
})
}
}