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: DecimalTrait 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 (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 KlineSummary
impl Debug for KlineSummary
Source§impl From<KlineSummary> for Candle
impl From<KlineSummary> for Candle
Source§fn from(kline_summary: KlineSummary) -> Self
fn from(kline_summary: KlineSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KlineSummary
impl RefUnwindSafe for KlineSummary
impl Send for KlineSummary
impl Sync for KlineSummary
impl Unpin for KlineSummary
impl UnsafeUnpin 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