pub struct DbStockItem {
pub stock_id: u64,
pub code: String,
pub name_sc: String,
pub market_code: u32,
pub instrument_type: u32,
pub lot_size: u32,
pub delisting: bool,
pub warrnt_stock_owner: u64,
pub no_search: bool,
pub listing_date: u32,
}Expand description
存储在 SQLite 中的股票信息
Fields§
§stock_id: u64§code: String§name_sc: String§market_code: u32§instrument_type: u32§lot_size: u32§delisting: bool§warrnt_stock_owner: u64§no_search: bool§listing_date: u32Trait Implementations§
Source§impl Clone for DbStockItem
impl Clone for DbStockItem
Source§fn clone(&self) -> DbStockItem
fn clone(&self) -> DbStockItem
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 moreAuto Trait Implementations§
impl Freeze for DbStockItem
impl RefUnwindSafe for DbStockItem
impl Send for DbStockItem
impl Sync for DbStockItem
impl Unpin for DbStockItem
impl UnwindSafe for DbStockItem
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