pub struct CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType> {
pub time: OffsetDateTime,
pub open: PriceType,
pub high: PriceType,
pub low: PriceType,
pub close: PriceType,
pub volume: VolumeType,
pub turnover: TurnoverType,
pub trade_session: TradeSessionType,
pub open_updated: bool,
}Fields§
§time: OffsetDateTime§open: PriceType§high: PriceType§low: PriceType§close: PriceType§volume: VolumeType§turnover: TurnoverType§trade_session: TradeSessionType§open_updated: boolTrait Implementations§
Auto Trait Implementations§
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> Freeze for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> RefUnwindSafe for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>where
PriceType: RefUnwindSafe,
VolumeType: RefUnwindSafe,
TurnoverType: RefUnwindSafe,
TradeSessionType: RefUnwindSafe,
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> Send for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> Sync for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> Unpin for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> UnsafeUnpin for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>where
PriceType: UnsafeUnpin,
VolumeType: UnsafeUnpin,
TurnoverType: UnsafeUnpin,
TradeSessionType: UnsafeUnpin,
impl<PriceType, VolumeType, TurnoverType, TradeSessionType> UnwindSafe for CandlestickComponents<PriceType, VolumeType, TurnoverType, TradeSessionType>where
PriceType: UnwindSafe,
VolumeType: UnwindSafe,
TurnoverType: UnwindSafe,
TradeSessionType: UnwindSafe,
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