pub struct CreateInvoiceShippingCostShippingRateDataDeliveryEstimate {
pub maximum: Option<CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMaximum>,
pub minimum: Option<CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMinimum>,
}
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<CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMaximum>
The upper bound of the estimated range. If empty, represents no upper bound i.e., infinite.
minimum: Option<CreateInvoiceShippingCostShippingRateDataDeliveryEstimateMinimum>
The lower bound of the estimated range. If empty, represents no lower bound.
Implementations§
Trait Implementations§
Source§impl Clone for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Clone for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
Source§fn clone(&self) -> CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
fn clone(&self) -> CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
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 CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
Auto Trait Implementations§
impl Freeze for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl RefUnwindSafe for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Send for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Sync for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl Unpin for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
impl UnwindSafe for CreateInvoiceShippingCostShippingRateDataDeliveryEstimate
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