pub struct TrackingDetails {
pub tracking_id: Option<String>,
}Expand description
TrackingDetails : Representation of tracking metadata.
Fields§
§tracking_id: Option<String>A string of up to 255 characters.
Implementations§
Source§impl TrackingDetails
impl TrackingDetails
Sourcepub fn new() -> TrackingDetails
pub fn new() -> TrackingDetails
Representation of tracking metadata.
Trait Implementations§
Source§impl Clone for TrackingDetails
impl Clone for TrackingDetails
Source§fn clone(&self) -> TrackingDetails
fn clone(&self) -> TrackingDetails
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 TrackingDetails
impl Debug for TrackingDetails
Source§impl Default for TrackingDetails
impl Default for TrackingDetails
Source§fn default() -> TrackingDetails
fn default() -> TrackingDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrackingDetails
impl<'de> Deserialize<'de> for TrackingDetails
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 TrackingDetails
impl PartialEq for TrackingDetails
Source§impl Serialize for TrackingDetails
impl Serialize for TrackingDetails
impl StructuralPartialEq for TrackingDetails
Auto Trait Implementations§
impl Freeze for TrackingDetails
impl RefUnwindSafe for TrackingDetails
impl Send for TrackingDetails
impl Sync for TrackingDetails
impl Unpin for TrackingDetails
impl UnwindSafe for TrackingDetails
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