pub struct CombinedIndicatorDayLine {
pub data: Vec<CombinedIndicator>,
}
Fields§
§data: Vec<CombinedIndicator>
Implementations§
Source§impl CombinedIndicatorDayLine
impl CombinedIndicatorDayLine
pub fn new(data: Vec<CombinedIndicator>) -> Self
pub fn inner(self) -> Vec<CombinedIndicator>
pub fn inner_ref(&self) -> &[CombinedIndicator]
pub fn short_indicator(&self) -> Vec<Indicator>
pub fn long_indicator(&self) -> Vec<Indicator>
pub fn split_single_indicator( self, ) -> (SingleIndicatorDayLine, SingleIndicatorDayLine)
Trait Implementations§
Source§impl Clone for CombinedIndicatorDayLine
impl Clone for CombinedIndicatorDayLine
Source§fn clone(&self) -> CombinedIndicatorDayLine
fn clone(&self) -> CombinedIndicatorDayLine
Returns a copy of the value. Read more
1.0.0 · 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 CombinedIndicatorDayLine
impl Debug for CombinedIndicatorDayLine
Source§impl<'de> Deserialize<'de> for CombinedIndicatorDayLine
impl<'de> Deserialize<'de> for CombinedIndicatorDayLine
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CombinedIndicatorDayLine
impl RefUnwindSafe for CombinedIndicatorDayLine
impl Send for CombinedIndicatorDayLine
impl Sync for CombinedIndicatorDayLine
impl Unpin for CombinedIndicatorDayLine
impl UnwindSafe for CombinedIndicatorDayLine
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