pub struct ItemDelivery {
pub estimated_delivery_date: Option<String>,
pub item_delivery_promise: Option<Box<ItemDeliveryPromise>>,
}Expand description
ItemDelivery : Delivery information for the item.
Fields§
§estimated_delivery_date: Option<String>The date and time of the latest Estimated Delivery Date (EDD) of all the items with an EDD. In ISO 8601 format.
item_delivery_promise: Option<Box<ItemDeliveryPromise>>Implementations§
Source§impl ItemDelivery
impl ItemDelivery
Sourcepub fn new() -> ItemDelivery
pub fn new() -> ItemDelivery
Delivery information for the item.
Trait Implementations§
Source§impl Clone for ItemDelivery
impl Clone for ItemDelivery
Source§fn clone(&self) -> ItemDelivery
fn clone(&self) -> ItemDelivery
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 ItemDelivery
impl Debug for ItemDelivery
Source§impl Default for ItemDelivery
impl Default for ItemDelivery
Source§fn default() -> ItemDelivery
fn default() -> ItemDelivery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ItemDelivery
impl<'de> Deserialize<'de> for ItemDelivery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ItemDelivery
impl PartialEq for ItemDelivery
Source§impl Serialize for ItemDelivery
impl Serialize for ItemDelivery
impl StructuralPartialEq for ItemDelivery
Auto Trait Implementations§
impl Freeze for ItemDelivery
impl RefUnwindSafe for ItemDelivery
impl Send for ItemDelivery
impl Sync for ItemDelivery
impl Unpin for ItemDelivery
impl UnsafeUnpin for ItemDelivery
impl UnwindSafe for ItemDelivery
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