pub struct TierPrices {
pub annual: CurrencyPrices,
pub monthly: CurrencyPrices,
}Expand description
TierPrices
JSON schema
{
"type": "object",
"required": [
"annual",
"monthly"
],
"properties": {
"annual": {
"$ref": "#/components/schemas/CurrencyPrices"
},
"monthly": {
"$ref": "#/components/schemas/CurrencyPrices"
}
}
}Fields§
§annual: CurrencyPrices§monthly: CurrencyPricesTrait Implementations§
Source§impl Clone for TierPrices
impl Clone for TierPrices
Source§fn clone(&self) -> TierPrices
fn clone(&self) -> TierPrices
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 TierPrices
impl Debug for TierPrices
Source§impl<'de> Deserialize<'de> for TierPrices
impl<'de> Deserialize<'de> for TierPrices
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
Auto Trait Implementations§
impl Freeze for TierPrices
impl RefUnwindSafe for TierPrices
impl Send for TierPrices
impl Sync for TierPrices
impl Unpin for TierPrices
impl UnsafeUnpin for TierPrices
impl UnwindSafe for TierPrices
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