pub struct PaymentLinksResourceShippingOption {
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 ID of the Shipping Rate to use for this shipping option.
Trait Implementations§
Source§impl Clone for PaymentLinksResourceShippingOption
impl Clone for PaymentLinksResourceShippingOption
Source§fn clone(&self) -> PaymentLinksResourceShippingOption
fn clone(&self) -> PaymentLinksResourceShippingOption
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 PaymentLinksResourceShippingOption
impl FromValueOpt for PaymentLinksResourceShippingOption
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentLinksResourceShippingOption
impl RefUnwindSafe for PaymentLinksResourceShippingOption
impl Send for PaymentLinksResourceShippingOption
impl Sync for PaymentLinksResourceShippingOption
impl Unpin for PaymentLinksResourceShippingOption
impl UnwindSafe for PaymentLinksResourceShippingOption
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