pub struct PaidPricingEntry {
pub configuration: Option<Value>,
pub description: Option<String>,
pub freeform: Option<String>,
pub is_default: Option<bool>,
pub kind: PaidKind,
pub extra: BTreeMap<String, Value>,
}Fields§
§configuration: Option<Value>§description: Option<String>§freeform: Option<String>§is_default: Option<bool>§kind: PaidKind§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for PaidPricingEntry
impl Clone for PaidPricingEntry
Source§fn clone(&self) -> PaidPricingEntry
fn clone(&self) -> PaidPricingEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaidPricingEntry
impl Debug for PaidPricingEntry
Source§impl<'de> Deserialize<'de> for PaidPricingEntry
impl<'de> Deserialize<'de> for PaidPricingEntry
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 PaidPricingEntry
impl RefUnwindSafe for PaidPricingEntry
impl Send for PaidPricingEntry
impl Sync for PaidPricingEntry
impl Unpin for PaidPricingEntry
impl UnsafeUnpin for PaidPricingEntry
impl UnwindSafe for PaidPricingEntry
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