pub struct Aroon {
pub up: Vec<Option<f64>>,
pub down: Vec<Option<f64>>,
pub oscillator: Vec<Option<f64>>,
}Fields§
§up: Vec<Option<f64>>§down: Vec<Option<f64>>§oscillator: Vec<Option<f64>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Aroon
impl RefUnwindSafe for Aroon
impl Send for Aroon
impl Sync for Aroon
impl Unpin for Aroon
impl UnsafeUnpin for Aroon
impl UnwindSafe for Aroon
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