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