pub struct BBResult {
pub upper: f64,
pub middle: f64,
pub lower: f64,
}Expand description
The result of a Bollinger Bands calculation.
Fields§
§upper: f64The upper Bollinger Band.
middle: f64The middle Bollinger Band (SMA).
lower: f64The lower Bollinger Band.
Trait Implementations§
impl StructuralPartialEq for BBResult
Auto Trait Implementations§
impl Freeze for BBResult
impl RefUnwindSafe for BBResult
impl Send for BBResult
impl Sync for BBResult
impl Unpin for BBResult
impl UnwindSafe for BBResult
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