pub enum SubscriptionSchedulePhaseConfigurationBillingCycleAnchor {
Automatic,
PhaseStart,
}
Expand description
Possible values are phase_start
or automatic
.
If phase_start
then billing cycle anchor of the subscription is set to the start of the phase when entering the phase.
If automatic
then the billing cycle anchor is automatically modified as needed when entering the phase.
For more information, see the billing cycle documentation.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl Clone for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
Source§fn clone(&self) -> SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
fn clone(&self) -> SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
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 FromValueOpt for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl FromValueOpt for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl PartialEq for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
Source§fn eq(
&self,
other: &SubscriptionSchedulePhaseConfigurationBillingCycleAnchor,
) -> bool
fn eq( &self, other: &SubscriptionSchedulePhaseConfigurationBillingCycleAnchor, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl Eq for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl StructuralPartialEq for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
Auto Trait Implementations§
impl Freeze for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl RefUnwindSafe for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl Send for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl Sync for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl Unpin for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
impl UnwindSafe for SubscriptionSchedulePhaseConfigurationBillingCycleAnchor
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