pub struct LabelResult {
pub container_reference_id: Option<String>,
pub tracking_id: Option<String>,
pub label: Option<Box<Label>>,
}Expand description
LabelResult : Label details including label stream, format, size.
Fields§
§container_reference_id: Option<String>An identifier for the container. This must be unique within all the containers in the same shipment.
tracking_id: Option<String>The tracking identifier assigned to the container.
label: Option<Box<Label>>Implementations§
Source§impl LabelResult
impl LabelResult
Sourcepub fn new() -> LabelResult
pub fn new() -> LabelResult
Label details including label stream, format, size.
Trait Implementations§
Source§impl Clone for LabelResult
impl Clone for LabelResult
Source§fn clone(&self) -> LabelResult
fn clone(&self) -> LabelResult
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 LabelResult
impl Debug for LabelResult
Source§impl Default for LabelResult
impl Default for LabelResult
Source§fn default() -> LabelResult
fn default() -> LabelResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelResult
impl<'de> Deserialize<'de> for LabelResult
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 LabelResult
impl PartialEq for LabelResult
Source§impl Serialize for LabelResult
impl Serialize for LabelResult
impl StructuralPartialEq for LabelResult
Auto Trait Implementations§
impl Freeze for LabelResult
impl RefUnwindSafe for LabelResult
impl Send for LabelResult
impl Sync for LabelResult
impl Unpin for LabelResult
impl UnwindSafe for LabelResult
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