pub struct BollingerOutput {
pub upper: f64,
pub middle: f64,
pub lower: f64,
}Expand description
Bollinger Bands output values.
Fields§
§upper: f64§middle: f64§lower: f64Trait Implementations§
Source§impl Clone for BollingerOutput
impl Clone for BollingerOutput
Source§fn clone(&self) -> BollingerOutput
fn clone(&self) -> BollingerOutput
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 BollingerOutput
impl Debug for BollingerOutput
Source§impl<'de> Deserialize<'de> for BollingerOutput
impl<'de> Deserialize<'de> for BollingerOutput
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
Source§impl PartialEq for BollingerOutput
impl PartialEq for BollingerOutput
Source§impl Serialize for BollingerOutput
impl Serialize for BollingerOutput
impl Copy for BollingerOutput
impl StructuralPartialEq for BollingerOutput
Auto Trait Implementations§
impl Freeze for BollingerOutput
impl RefUnwindSafe for BollingerOutput
impl Send for BollingerOutput
impl Sync for BollingerOutput
impl Unpin for BollingerOutput
impl UnsafeUnpin for BollingerOutput
impl UnwindSafe for BollingerOutput
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