pub struct SmcResult {
pub structures: Vec<StructurePoint>,
pub swing_points: Vec<SwingPoint>,
pub order_blocks: Vec<OrderBlock>,
pub fair_value_gaps: Vec<FairValueGap>,
pub equal_highs_lows: Vec<EqualHighLow>,
pub premium_discount_zone: Option<PremiumDiscountZone>,
pub strong_weak_levels: Vec<StrongWeakLevel>,
pub swing_trend: String,
pub internal_trend: String,
}Fields§
§structures: Vec<StructurePoint>§swing_points: Vec<SwingPoint>§order_blocks: Vec<OrderBlock>§fair_value_gaps: Vec<FairValueGap>§equal_highs_lows: Vec<EqualHighLow>§strong_weak_levels: Vec<StrongWeakLevel>§swing_trend: String§internal_trend: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for SmcResult
impl<'de> Deserialize<'de> for SmcResult
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
Auto Trait Implementations§
impl Freeze for SmcResult
impl RefUnwindSafe for SmcResult
impl Send for SmcResult
impl Sync for SmcResult
impl Unpin for SmcResult
impl UnsafeUnpin for SmcResult
impl UnwindSafe for SmcResult
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