pub struct ShipperInstruction {
pub delivery_notes: Option<String>,
}Expand description
ShipperInstruction : The shipper instruction.
Fields§
§delivery_notes: Option<String>The delivery notes for the shipment
Implementations§
Source§impl ShipperInstruction
impl ShipperInstruction
Sourcepub fn new() -> ShipperInstruction
pub fn new() -> ShipperInstruction
The shipper instruction.
Trait Implementations§
Source§impl Clone for ShipperInstruction
impl Clone for ShipperInstruction
Source§fn clone(&self) -> ShipperInstruction
fn clone(&self) -> ShipperInstruction
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 ShipperInstruction
impl Debug for ShipperInstruction
Source§impl Default for ShipperInstruction
impl Default for ShipperInstruction
Source§fn default() -> ShipperInstruction
fn default() -> ShipperInstruction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ShipperInstruction
impl<'de> Deserialize<'de> for ShipperInstruction
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 ShipperInstruction
impl PartialEq for ShipperInstruction
Source§impl Serialize for ShipperInstruction
impl Serialize for ShipperInstruction
impl StructuralPartialEq for ShipperInstruction
Auto Trait Implementations§
impl Freeze for ShipperInstruction
impl RefUnwindSafe for ShipperInstruction
impl Send for ShipperInstruction
impl Sync for ShipperInstruction
impl Unpin for ShipperInstruction
impl UnwindSafe for ShipperInstruction
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