pub enum TradingSignal {
Buy,
Sell,
Hold,
}
Variants§
Trait Implementations§
Source§impl Clone for TradingSignal
impl Clone for TradingSignal
Source§fn clone(&self) -> TradingSignal
fn clone(&self) -> TradingSignal
Returns a copy 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 TradingSignal
impl Debug for TradingSignal
Source§impl PartialEq for TradingSignal
impl PartialEq for TradingSignal
Source§impl Serialize for TradingSignal
impl Serialize for TradingSignal
impl StructuralPartialEq for TradingSignal
Auto Trait Implementations§
impl Freeze for TradingSignal
impl RefUnwindSafe for TradingSignal
impl Send for TradingSignal
impl Sync for TradingSignal
impl Unpin for TradingSignal
impl UnwindSafe for TradingSignal
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