pub struct AroonData {
pub date: String,
pub aroon_up: Option<f64>,
pub aroon_down: Option<f64>,
}Expand description
Aroon Indicator data
Fields§
§date: StringDate
aroon_up: Option<f64>Aroon Up
aroon_down: Option<f64>Aroon Down
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AroonData
impl<'de> Deserialize<'de> for AroonData
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 AroonData
impl RefUnwindSafe for AroonData
impl Send for AroonData
impl Sync for AroonData
impl Unpin for AroonData
impl UnwindSafe for AroonData
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