pub struct ClosingPrice {
pub ins_code: String,
pub deven: String,
pub pclosing: String,
pub pdr_cot_val: String,
pub ztot_tran: String,
pub qtot_tran5j: String,
pub qtot_cap: String,
pub price_min: String,
pub price_max: String,
pub price_yesterday: String,
pub price_first: String,
}Expand description
A single closing-price row. All numeric fields are kept as strings to preserve the exact textual form (the JS does the same and only converts when needed), which matters for decimal-accurate price adjustment.
Fields§
§ins_code: String§deven: String§pclosing: String§pdr_cot_val: String§ztot_tran: String§qtot_tran5j: String§qtot_cap: String§price_min: String§price_max: String§price_yesterday: String§price_first: StringImplementations§
Source§impl ClosingPrice
impl ClosingPrice
Trait Implementations§
Source§impl Clone for ClosingPrice
impl Clone for ClosingPrice
Source§fn clone(&self) -> ClosingPrice
fn clone(&self) -> ClosingPrice
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 ClosingPrice
impl Debug for ClosingPrice
impl Eq for ClosingPrice
Source§impl PartialEq for ClosingPrice
impl PartialEq for ClosingPrice
impl StructuralPartialEq for ClosingPrice
Auto Trait Implementations§
impl Freeze for ClosingPrice
impl RefUnwindSafe for ClosingPrice
impl Send for ClosingPrice
impl Sync for ClosingPrice
impl Unpin for ClosingPrice
impl UnsafeUnpin for ClosingPrice
impl UnwindSafe for ClosingPrice
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