pub struct PaymentPagesCheckoutSessionShippingOption {
pub shipping_amount: i64,
pub shipping_rate: Expandable<ShippingRate>,
}
Fields§
§shipping_amount: i64
A non-negative integer in cents representing how much to charge.
shipping_rate: Expandable<ShippingRate>
The shipping rate.
Trait Implementations§
Source§impl Clone for PaymentPagesCheckoutSessionShippingOption
impl Clone for PaymentPagesCheckoutSessionShippingOption
Source§fn clone(&self) -> PaymentPagesCheckoutSessionShippingOption
fn clone(&self) -> PaymentPagesCheckoutSessionShippingOption
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 FromValueOpt for PaymentPagesCheckoutSessionShippingOption
impl FromValueOpt for PaymentPagesCheckoutSessionShippingOption
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentPagesCheckoutSessionShippingOption
impl RefUnwindSafe for PaymentPagesCheckoutSessionShippingOption
impl Send for PaymentPagesCheckoutSessionShippingOption
impl Sync for PaymentPagesCheckoutSessionShippingOption
impl Unpin for PaymentPagesCheckoutSessionShippingOption
impl UnwindSafe for PaymentPagesCheckoutSessionShippingOption
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