pub struct UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate {
pub maximum: Option<UpdateInvoiceShippingCostShippingRateDataDeliveryEstimateMaximum>,
pub minimum: Option<UpdateInvoiceShippingCostShippingRateDataDeliveryEstimateMinimum>,
}
Expand description
The estimated range for how long shipping will take, meant to be displayable to the customer. This will appear on CheckoutSessions.
Fields§
§maximum: Option<UpdateInvoiceShippingCostShippingRateDataDeliveryEstimateMaximum>
The upper bound of the estimated range. If empty, represents no upper bound i.e., infinite.
minimum: Option<UpdateInvoiceShippingCostShippingRateDataDeliveryEstimateMinimum>
The lower bound of the estimated range. If empty, represents no lower bound.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Clone for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
Source§fn clone(&self) -> UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
fn clone(&self) -> UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
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 moreimpl Copy for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
Auto Trait Implementations§
impl Freeze for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl RefUnwindSafe for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Send for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Sync for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Unpin for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl UnwindSafe for UpdateInvoiceShippingCostShippingRateDataDeliveryEstimate
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