pub enum CreatePlanTiersUpTo {
Inf,
I64(i64),
}
Expand description
Specifies the upper bound of this tier.
The lower bound of a tier is the upper bound of the previous tier adding one.
Use inf
to define a fallback tier.
Variants§
Trait Implementations§
Source§impl Clone for CreatePlanTiersUpTo
impl Clone for CreatePlanTiersUpTo
Source§fn clone(&self) -> CreatePlanTiersUpTo
fn clone(&self) -> CreatePlanTiersUpTo
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 CreatePlanTiersUpTo
impl Debug for CreatePlanTiersUpTo
Source§impl Serialize for CreatePlanTiersUpTo
impl Serialize for CreatePlanTiersUpTo
impl Copy for CreatePlanTiersUpTo
Auto Trait Implementations§
impl Freeze for CreatePlanTiersUpTo
impl RefUnwindSafe for CreatePlanTiersUpTo
impl Send for CreatePlanTiersUpTo
impl Sync for CreatePlanTiersUpTo
impl Unpin for CreatePlanTiersUpTo
impl UnwindSafe for CreatePlanTiersUpTo
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