Struct stripe::model::RecurringPriceData
source · pub struct RecurringPriceData {
pub currency: String,
pub product: String,
pub recurring: RecurringAdhoc,
pub tax_behavior: Option<String>,
pub unit_amount: Option<i64>,
pub unit_amount_decimal: Option<Decimal>,
}Fields§
§currency: String§product: String§recurring: RecurringAdhoc§tax_behavior: Option<String>§unit_amount: Option<i64>§unit_amount_decimal: Option<Decimal>Trait Implementations§
source§impl Clone for RecurringPriceData
impl Clone for RecurringPriceData
source§fn clone(&self) -> RecurringPriceData
fn clone(&self) -> RecurringPriceData
Returns a copy 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 RecurringPriceData
impl Debug for RecurringPriceData
source§impl<'de> Deserialize<'de> for RecurringPriceData
impl<'de> Deserialize<'de> for RecurringPriceData
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 RecurringPriceData
impl Display for RecurringPriceData
Auto Trait Implementations§
impl RefUnwindSafe for RecurringPriceData
impl Send for RecurringPriceData
impl Sync for RecurringPriceData
impl Unpin for RecurringPriceData
impl UnwindSafe for RecurringPriceData
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