#[repr(C)]pub struct dx_summary {
pub day_id: dxf_dayid_t,
pub day_open_price: dxf_double_t,
pub day_high_price: dxf_double_t,
pub day_low_price: dxf_double_t,
pub day_close_price: dxf_double_t,
pub prev_day_id: dxf_dayid_t,
pub prev_day_close_price: dxf_double_t,
pub prev_day_volume: dxf_double_t,
pub open_interest: dxf_double_t,
pub flags: dxf_int_t,
}
Expand description
Summary
Fields§
§day_id: dxf_dayid_t
§day_open_price: dxf_double_t
§day_high_price: dxf_double_t
§day_low_price: dxf_double_t
§day_close_price: dxf_double_t
§prev_day_id: dxf_dayid_t
§prev_day_close_price: dxf_double_t
§prev_day_volume: dxf_double_t
§open_interest: dxf_double_t
§flags: dxf_int_t
Trait Implementations§
Source§impl Clone for dx_summary
impl Clone for dx_summary
Source§fn clone(&self) -> dx_summary
fn clone(&self) -> dx_summary
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for dx_summary
impl Debug for dx_summary
Source§impl PartialEq for dx_summary
impl PartialEq for dx_summary
impl Copy for dx_summary
impl StructuralPartialEq for dx_summary
Auto Trait Implementations§
impl Freeze for dx_summary
impl RefUnwindSafe for dx_summary
impl Send for dx_summary
impl Sync for dx_summary
impl Unpin for dx_summary
impl UnwindSafe for dx_summary
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