pub struct BollingerBandsOutput {
pub average: f64,
pub upper: f64,
pub lower: f64,
}
Fields§
§average: f64
§upper: f64
§lower: f64
Trait Implementations§
Source§impl Clone for BollingerBandsOutput
impl Clone for BollingerBandsOutput
Source§fn clone(&self) -> BollingerBandsOutput
fn clone(&self) -> BollingerBandsOutput
Returns a duplicate 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 BollingerBandsOutput
impl Debug for BollingerBandsOutput
Source§impl PartialEq for BollingerBandsOutput
impl PartialEq for BollingerBandsOutput
impl StructuralPartialEq for BollingerBandsOutput
Auto Trait Implementations§
impl Freeze for BollingerBandsOutput
impl RefUnwindSafe for BollingerBandsOutput
impl Send for BollingerBandsOutput
impl Sync for BollingerBandsOutput
impl Unpin for BollingerBandsOutput
impl UnwindSafe for BollingerBandsOutput
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