pub struct RebateDetail {
pub user_id: Option<String>,
pub biz_type: Option<String>,
pub symbol: Option<String>,
pub coin: Option<String>,
pub earning: Option<String>,
pub markup_earning: Option<String>,
pub base_fee_earning: Option<String>,
pub order_id: Option<String>,
pub exec_time: Option<String>,
pub exec_id: Option<String>,
}Expand description
Rebate detail entry.
Fields§
§user_id: Option<String>§biz_type: Option<String>§symbol: Option<String>§coin: Option<String>§earning: Option<String>§markup_earning: Option<String>§base_fee_earning: Option<String>§order_id: Option<String>§exec_time: Option<String>§exec_id: Option<String>Trait Implementations§
Source§impl Clone for RebateDetail
impl Clone for RebateDetail
Source§fn clone(&self) -> RebateDetail
fn clone(&self) -> RebateDetail
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 Debug for RebateDetail
impl Debug for RebateDetail
Source§impl<'de> Deserialize<'de> for RebateDetail
impl<'de> Deserialize<'de> for RebateDetail
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 RebateDetail
impl RefUnwindSafe for RebateDetail
impl Send for RebateDetail
impl Sync for RebateDetail
impl Unpin for RebateDetail
impl UnsafeUnpin for RebateDetail
impl UnwindSafe for RebateDetail
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