#[repr(u8)]pub enum AccountTenure {
Undeclared = 0,
ZeroToThreeDays = 1,
ThreeDaysToTenDays = 2,
TenDaysToThirtyDays = 3,
ThirtyDaysToNinetyDays = 4,
NinetyDaysToOneHundredEightyDays = 5,
OneHundredEightyDaysToThreeHundredSixtyFiveDays = 6,
GreaterThanThreeHundredSixtyFiveDays = 7,
}Expand description
The age of the customer’s account.
Variants§
Undeclared = 0
ZeroToThreeDays = 1
ThreeDaysToTenDays = 2
TenDaysToThirtyDays = 3
ThirtyDaysToNinetyDays = 4
NinetyDaysToOneHundredEightyDays = 5
OneHundredEightyDaysToThreeHundredSixtyFiveDays = 6
GreaterThanThreeHundredSixtyFiveDays = 7
Trait Implementations§
Source§impl Clone for AccountTenure
impl Clone for AccountTenure
Source§fn clone(&self) -> AccountTenure
fn clone(&self) -> AccountTenure
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 AccountTenure
impl Debug for AccountTenure
Source§impl<'de> Deserialize<'de> for AccountTenure
impl<'de> Deserialize<'de> for AccountTenure
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 AccountTenure
impl Hash for AccountTenure
Source§impl PartialEq for AccountTenure
impl PartialEq for AccountTenure
Source§impl Serialize for AccountTenure
impl Serialize for AccountTenure
impl Eq for AccountTenure
impl StructuralPartialEq for AccountTenure
Auto Trait Implementations§
impl Freeze for AccountTenure
impl RefUnwindSafe for AccountTenure
impl Send for AccountTenure
impl Sync for AccountTenure
impl Unpin for AccountTenure
impl UnwindSafe for AccountTenure
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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