candlestick

Struct Candlestick

Source
pub struct Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Clone, Interval: Clone, Time: Clone, Price: Clone, Volume: Clone,
{ pub instrument: Instrument, pub interval: Interval, pub time: Time, pub open: Price, pub high: Price, pub low: Price, pub close: Price, pub volume: Volume, }

Fields§

§instrument: Instrument§interval: Interval§time: Time§open: Price§high: Price§low: Price§close: Price§volume: Volume

Implementations§

Source§

impl<Instrument, Interval, Time, Price, Volume> Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Clone, Interval: Clone, Time: Clone, Price: Clone, Volume: Clone,

Source

pub fn new( instrument: Instrument, interval: Interval, time: Time, open: Price, high: Price, low: Price, close: Price, volume: Volume, ) -> Candlestick<Instrument, Interval, Time, Price, Volume>

Trait Implementations§

Source§

impl<Instrument, Interval, Time, Price, Volume> Clone for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Clone + Clone, Interval: Clone + Clone, Time: Clone + Clone, Price: Clone + Clone, Volume: Clone + Clone,

Source§

fn clone(&self) -> Candlestick<Instrument, Interval, Time, Price, Volume>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Instrument, Interval, Time, Price, Volume> Debug for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Clone + Debug, Interval: Clone + Debug, Time: Clone + Debug, Price: Clone + Debug, Volume: Clone + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Instrument, Interval, Time, Price, Volume> Freeze for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Freeze, Interval: Freeze, Time: Freeze, Price: Freeze, Volume: Freeze,

§

impl<Instrument, Interval, Time, Price, Volume> RefUnwindSafe for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: RefUnwindSafe, Interval: RefUnwindSafe, Time: RefUnwindSafe, Price: RefUnwindSafe, Volume: RefUnwindSafe,

§

impl<Instrument, Interval, Time, Price, Volume> Send for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Send, Interval: Send, Time: Send, Price: Send, Volume: Send,

§

impl<Instrument, Interval, Time, Price, Volume> Sync for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Sync, Interval: Sync, Time: Sync, Price: Sync, Volume: Sync,

§

impl<Instrument, Interval, Time, Price, Volume> Unpin for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: Unpin, Interval: Unpin, Time: Unpin, Price: Unpin, Volume: Unpin,

§

impl<Instrument, Interval, Time, Price, Volume> UnwindSafe for Candlestick<Instrument, Interval, Time, Price, Volume>
where Instrument: UnwindSafe, Interval: UnwindSafe, Time: UnwindSafe, Price: UnwindSafe, Volume: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.