pub enum KolStrategy {
Scalper,
DayTrader,
SwingTrader,
Hodler,
Mixed,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for KolStrategy
impl Clone for KolStrategy
Source§fn clone(&self) -> KolStrategy
fn clone(&self) -> KolStrategy
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 moreSource§impl Debug for KolStrategy
impl Debug for KolStrategy
Source§impl<'de> Deserialize<'de> for KolStrategy
impl<'de> Deserialize<'de> for KolStrategy
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 KolStrategy
impl PartialEq for KolStrategy
Source§fn eq(&self, other: &KolStrategy) -> bool
fn eq(&self, other: &KolStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KolStrategy
impl Serialize for KolStrategy
impl Copy for KolStrategy
impl Eq for KolStrategy
impl StructuralPartialEq for KolStrategy
Auto Trait Implementations§
impl Freeze for KolStrategy
impl RefUnwindSafe for KolStrategy
impl Send for KolStrategy
impl Sync for KolStrategy
impl Unpin for KolStrategy
impl UnsafeUnpin for KolStrategy
impl UnwindSafe for KolStrategy
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