pub enum TaxRegistrationStatus {
Active,
Expired,
Scheduled,
}
Expand description
The status of the registration.
This field is present for convenience and can be deduced from active_from
and expires_at
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TaxRegistrationStatus
impl Clone for TaxRegistrationStatus
Source§fn clone(&self) -> TaxRegistrationStatus
fn clone(&self) -> TaxRegistrationStatus
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 TaxRegistrationStatus
impl Debug for TaxRegistrationStatus
Source§impl Deserialize for TaxRegistrationStatus
impl Deserialize for TaxRegistrationStatus
Source§impl Display for TaxRegistrationStatus
impl Display for TaxRegistrationStatus
Source§impl FromStr for TaxRegistrationStatus
impl FromStr for TaxRegistrationStatus
Source§impl FromValueOpt for TaxRegistrationStatus
impl FromValueOpt for TaxRegistrationStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for TaxRegistrationStatus
impl PartialEq for TaxRegistrationStatus
impl Copy for TaxRegistrationStatus
impl Eq for TaxRegistrationStatus
impl StructuralPartialEq for TaxRegistrationStatus
Auto Trait Implementations§
impl Freeze for TaxRegistrationStatus
impl RefUnwindSafe for TaxRegistrationStatus
impl Send for TaxRegistrationStatus
impl Sync for TaxRegistrationStatus
impl Unpin for TaxRegistrationStatus
impl UnwindSafe for TaxRegistrationStatus
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