pub struct DeliveryInfo {
pub delivery_type: String,
pub delivery_time: DateTime<Utc>,
}Expand description
Delivery Information
Information about delivery for the transaction.
Fields§
§delivery_type: String§delivery_time: DateTime<Utc>Trait Implementations§
Source§impl Clone for DeliveryInfo
impl Clone for DeliveryInfo
Source§fn clone(&self) -> DeliveryInfo
fn clone(&self) -> DeliveryInfo
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 DeliveryInfo
impl Debug for DeliveryInfo
Source§impl Default for DeliveryInfo
impl Default for DeliveryInfo
Source§fn default() -> DeliveryInfo
fn default() -> DeliveryInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeliveryInfowhere
DeliveryInfo: Default,
impl<'de> Deserialize<'de> for DeliveryInfowhere
DeliveryInfo: Default,
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 DeliveryInfo
impl PartialEq for DeliveryInfo
Source§impl Serialize for DeliveryInfo
impl Serialize for DeliveryInfo
impl StructuralPartialEq for DeliveryInfo
Auto Trait Implementations§
impl Freeze for DeliveryInfo
impl RefUnwindSafe for DeliveryInfo
impl Send for DeliveryInfo
impl Sync for DeliveryInfo
impl Unpin for DeliveryInfo
impl UnwindSafe for DeliveryInfo
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