pub enum TierBillingMode {
Subscription,
Paygo,
}Expand description
Billing mode for a tier. ‘subscription’ uses monthly spend limits; ‘paygo’ uses prepaid balances.
JSON schema
{
"description": "Billing mode for a tier. 'subscription' uses monthly spend limits; 'paygo' uses prepaid balances.",
"type": "string",
"enum": [
"subscription",
"paygo"
]
}Variants§
Trait Implementations§
Source§impl Clone for TierBillingMode
impl Clone for TierBillingMode
Source§fn clone(&self) -> TierBillingMode
fn clone(&self) -> TierBillingMode
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 TierBillingMode
impl Debug for TierBillingMode
Source§impl<'de> Deserialize<'de> for TierBillingMode
impl<'de> Deserialize<'de> for TierBillingMode
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 Display for TierBillingMode
impl Display for TierBillingMode
Source§impl From<&TierBillingMode> for TierBillingMode
impl From<&TierBillingMode> for TierBillingMode
Source§fn from(value: &TierBillingMode) -> Self
fn from(value: &TierBillingMode) -> Self
Converts to this type from the input type.
Source§impl From<TierBillingMode> for ModelRelayApi
impl From<TierBillingMode> for ModelRelayApi
Source§fn from(value: TierBillingMode) -> Self
fn from(value: TierBillingMode) -> Self
Converts to this type from the input type.
Source§impl FromStr for TierBillingMode
impl FromStr for TierBillingMode
Source§impl Hash for TierBillingMode
impl Hash for TierBillingMode
Source§impl Ord for TierBillingMode
impl Ord for TierBillingMode
Source§fn cmp(&self, other: &TierBillingMode) -> Ordering
fn cmp(&self, other: &TierBillingMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TierBillingMode
impl PartialEq for TierBillingMode
Source§impl PartialOrd for TierBillingMode
impl PartialOrd for TierBillingMode
Source§impl Serialize for TierBillingMode
impl Serialize for TierBillingMode
Source§impl TryFrom<&String> for TierBillingMode
impl TryFrom<&String> for TierBillingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for TierBillingMode
impl TryFrom<&str> for TierBillingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for TierBillingMode
impl TryFrom<String> for TierBillingMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for TierBillingMode
impl Eq for TierBillingMode
impl StructuralPartialEq for TierBillingMode
Auto Trait Implementations§
impl Freeze for TierBillingMode
impl RefUnwindSafe for TierBillingMode
impl Send for TierBillingMode
impl Sync for TierBillingMode
impl Unpin for TierBillingMode
impl UnwindSafe for TierBillingMode
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.