pub struct Delivery {
pub delivery_company: Option<DeliveryCompany>,
pub delivery_method: Option<DeliveryMethod>,
pub estimated_shipping_date: Option<DateIso8601>,
pub estimated_delivery_date: Option<DateIso8601>,
}Expand description
Dados de entrega
Fields§
§delivery_company: Option<DeliveryCompany>Empresa de entrega (max 100 chars)
delivery_method: Option<DeliveryMethod>Método de entrega (max 100 chars)
estimated_shipping_date: Option<DateIso8601>Data estimada de envio (formato ISO 8601: YYYY-MM-DD)
estimated_delivery_date: Option<DateIso8601>Data estimada de entrega (formato ISO 8601: YYYY-MM-DD)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Delivery
impl<'de> Deserialize<'de> for Delivery
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
impl StructuralPartialEq for Delivery
Auto Trait Implementations§
impl Freeze for Delivery
impl RefUnwindSafe for Delivery
impl Send for Delivery
impl Sync for Delivery
impl Unpin for Delivery
impl UnwindSafe for Delivery
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