pub struct QAMOMSlice {
pub datetime: String,
pub user_id: String,
pub pre_balance: f64,
pub close_profit: f64,
pub commission: f64,
pub position_profit: f64,
pub float_profit: f64,
pub balance: f64,
pub margin: f64,
pub available: f64,
pub risk_ratio: f64,
}
Fields§
§datetime: String
§user_id: String
§pre_balance: f64
§close_profit: f64
§commission: f64
§position_profit: f64
§float_profit: f64
§balance: f64
§margin: f64
§available: f64
§risk_ratio: f64
Trait Implementations§
Source§impl Clone for QAMOMSlice
impl Clone for QAMOMSlice
Source§fn clone(&self) -> QAMOMSlice
fn clone(&self) -> QAMOMSlice
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 QAMOMSlice
impl Debug for QAMOMSlice
Source§impl<'de> Deserialize<'de> for QAMOMSlice
impl<'de> Deserialize<'de> for QAMOMSlice
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 QAMOMSlice
impl RefUnwindSafe for QAMOMSlice
impl Send for QAMOMSlice
impl Sync for QAMOMSlice
impl Unpin for QAMOMSlice
impl UnwindSafe for QAMOMSlice
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