pub struct AssetInformation {
pub global_asset_id: String,
pub specific_asset_ids: Vec<SpecificAssetId>,
}Expand description
AAS asset identification block.
global_asset_id is the canonical URI for the physical product built from
the GTIN. specific_asset_ids carry GTIN, batch, and serial identifiers
for GS1 Digital Link resolution and registry look-up.
Fields§
§global_asset_id: String§specific_asset_ids: Vec<SpecificAssetId>Trait Implementations§
Source§impl Clone for AssetInformation
impl Clone for AssetInformation
Source§fn clone(&self) -> AssetInformation
fn clone(&self) -> AssetInformation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AssetInformation
impl Debug for AssetInformation
Source§impl<'de> Deserialize<'de> for AssetInformation
impl<'de> Deserialize<'de> for AssetInformation
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 AssetInformation
impl PartialEq for AssetInformation
Source§impl Serialize for AssetInformation
impl Serialize for AssetInformation
impl StructuralPartialEq for AssetInformation
Auto Trait Implementations§
impl Freeze for AssetInformation
impl RefUnwindSafe for AssetInformation
impl Send for AssetInformation
impl Sync for AssetInformation
impl Unpin for AssetInformation
impl UnsafeUnpin for AssetInformation
impl UnwindSafe for AssetInformation
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