pub struct AwardCard {
pub award_id: Option<i64>,
pub spec_code: Option<String>,
pub claimed_at: Option<i64>,
pub used_at: Option<i64>,
pub expire_at: Option<i64>,
pub status: Option<String>,
pub amount: Option<String>,
pub limit_pnl_percentage: Option<String>,
pub base_coin: Option<String>,
pub quote_coin: Option<String>,
pub direction: Option<i32>,
pub category: Option<String>,
}Fields§
§award_id: Option<i64>§spec_code: Option<String>§claimed_at: Option<i64>§used_at: Option<i64>§expire_at: Option<i64>§status: Option<String>§amount: Option<String>§limit_pnl_percentage: Option<String>§base_coin: Option<String>§quote_coin: Option<String>§direction: Option<i32>§category: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AwardCard
impl<'de> Deserialize<'de> for AwardCard
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 AwardCard
impl RefUnwindSafe for AwardCard
impl Send for AwardCard
impl Sync for AwardCard
impl Unpin for AwardCard
impl UnsafeUnpin for AwardCard
impl UnwindSafe for AwardCard
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