pub struct KlineSummary {
pub open_time: i64,
pub open: Decimal,
pub high: Decimal,
pub low: Decimal,
pub close: Decimal,
pub volume: Decimal,
pub close_time: i64,
pub quote_asset_volume: Decimal,
pub number_of_trades: i64,
pub taker_buy_base_asset_volume: Decimal,
pub taker_buy_quote_asset_volume: Decimal,
}
Fields§
§open_time: i64
§open: Decimal
§high: Decimal
§low: Decimal
§close: Decimal
§volume: Decimal
§close_time: i64
§quote_asset_volume: Decimal
§number_of_trades: i64
§taker_buy_base_asset_volume: Decimal
§taker_buy_quote_asset_volume: Decimal
Trait Implementations§
Source§impl Clone for KlineSummary
impl Clone for KlineSummary
Source§fn clone(&self) -> KlineSummary
fn clone(&self) -> KlineSummary
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 moreAuto Trait Implementations§
impl Freeze for KlineSummary
impl RefUnwindSafe for KlineSummary
impl Send for KlineSummary
impl Sync for KlineSummary
impl Unpin for KlineSummary
impl UnwindSafe for KlineSummary
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