pub struct CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions {
pub amount: i64,
pub tax_behavior: Option<CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptionsTaxBehavior>,
}
Available on crate feature
checkout
only.Fields§
§amount: i64
A non-negative integer in cents representing how much to charge.
tax_behavior: Option<CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptionsTaxBehavior>
Specifies whether the rate is considered inclusive of taxes or exclusive of taxes.
One of inclusive
, exclusive
, or unspecified
.
Trait Implementations§
Source§impl Clone for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Clone for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
Source§fn clone(
&self,
) -> CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
fn clone( &self, ) -> CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
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 CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Debug for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
Source§impl Default for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Default for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
Source§fn default() -> CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
fn default() -> CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl<'de> Deserialize<'de> for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
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 CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl RefUnwindSafe for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Send for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Sync for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl Unpin for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
impl UnwindSafe for CreateCheckoutSessionShippingOptionsShippingRateDataFixedAmountCurrencyOptions
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