pub struct BillboardStock {Show 14 fields
pub code: String,
pub day: String,
pub direction: String,
pub rank: i32,
pub abnormal_code: String,
pub abnormal_name: String,
pub sales_depart_name: String,
pub buy_value: f64,
pub buy_rate: f64,
pub sell_value: f64,
pub sell_rate: f64,
pub total_value: f64,
pub net_value: f64,
pub amount: f64,
}
Fields§
§code: String
§day: String
§direction: String
§rank: i32
§abnormal_code: String
§abnormal_name: String
§sales_depart_name: String
§buy_value: f64
§buy_rate: f64
§sell_value: f64
§sell_rate: f64
§total_value: f64
§net_value: f64
§amount: f64
Trait Implementations§
Source§impl Debug for BillboardStock
impl Debug for BillboardStock
Source§impl<'de> Deserialize<'de> for BillboardStock
impl<'de> Deserialize<'de> for BillboardStock
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 BillboardStock
impl RefUnwindSafe for BillboardStock
impl Send for BillboardStock
impl Sync for BillboardStock
impl Unpin for BillboardStock
impl UnwindSafe for BillboardStock
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