pub struct Delivery {
pub name: Option<String>,
pub location_id: Option<Identifier>,
pub date: Option<Date>,
pub address: Option<PostalAddress>,
}Expand description
BG-13 delivery information.
Fields§
§name: Option<String>BT-70 deliver-to party name.
location_id: Option<Identifier>BT-71 deliver-to location identifier.
date: Option<Date>BT-72 actual delivery date.
address: Option<PostalAddress>BG-15 deliver-to address.
Trait Implementations§
impl Eq for Delivery
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 UnsafeUnpin 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