pub struct DonchianOutput {
pub upper: f64,
pub middle: f64,
pub lower: f64,
}Expand description
Donchian Channels output values.
Fields§
§upper: f64§middle: f64§lower: f64Trait Implementations§
Source§impl Clone for DonchianOutput
impl Clone for DonchianOutput
Source§fn clone(&self) -> DonchianOutput
fn clone(&self) -> DonchianOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DonchianOutput
Source§impl Debug for DonchianOutput
impl Debug for DonchianOutput
Source§impl<'de> Deserialize<'de> for DonchianOutput
impl<'de> Deserialize<'de> for DonchianOutput
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 DonchianOutput
impl PartialEq for DonchianOutput
Source§impl Serialize for DonchianOutput
impl Serialize for DonchianOutput
impl StructuralPartialEq for DonchianOutput
Auto Trait Implementations§
impl Freeze for DonchianOutput
impl RefUnwindSafe for DonchianOutput
impl Send for DonchianOutput
impl Sync for DonchianOutput
impl Unpin for DonchianOutput
impl UnsafeUnpin for DonchianOutput
impl UnwindSafe for DonchianOutput
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