pub struct AdxOutput {
pub plus_di: f64,
pub minus_di: f64,
pub adx: f64,
}Expand description
ADX (Average Directional Index) output values.
Fields§
§plus_di: f64§minus_di: f64§adx: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for AdxOutput
impl<'de> Deserialize<'de> for AdxOutput
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
impl Copy for AdxOutput
impl StructuralPartialEq for AdxOutput
Auto Trait Implementations§
impl Freeze for AdxOutput
impl RefUnwindSafe for AdxOutput
impl Send for AdxOutput
impl Sync for AdxOutput
impl Unpin for AdxOutput
impl UnsafeUnpin for AdxOutput
impl UnwindSafe for AdxOutput
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