pub enum TurnoverBand {
VeryLow,
Low,
Medium,
High,
VeryHigh,
UltraHigh,
}Expand description
Turnover band for expected activity.
Variants§
VeryLow
Very low (<$1K/month)
Low
Low ($1K-$5K/month)
Medium
Medium ($5K-$25K/month)
High
High ($25K-$100K/month)
VeryHigh
Very high ($100K-$500K/month)
UltraHigh
Ultra high (>$500K/month)
Implementations§
Trait Implementations§
Source§impl Clone for TurnoverBand
impl Clone for TurnoverBand
Source§fn clone(&self) -> TurnoverBand
fn clone(&self) -> TurnoverBand
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 TurnoverBand
impl Debug for TurnoverBand
Source§impl Default for TurnoverBand
impl Default for TurnoverBand
Source§fn default() -> TurnoverBand
fn default() -> TurnoverBand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TurnoverBand
impl<'de> Deserialize<'de> for TurnoverBand
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 Hash for TurnoverBand
impl Hash for TurnoverBand
Source§impl PartialEq for TurnoverBand
impl PartialEq for TurnoverBand
Source§impl Serialize for TurnoverBand
impl Serialize for TurnoverBand
impl Copy for TurnoverBand
impl Eq for TurnoverBand
impl StructuralPartialEq for TurnoverBand
Auto Trait Implementations§
impl Freeze for TurnoverBand
impl RefUnwindSafe for TurnoverBand
impl Send for TurnoverBand
impl Sync for TurnoverBand
impl Unpin for TurnoverBand
impl UnwindSafe for TurnoverBand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.