basyx-rs 0.2.0

A Rust library to work with Asset Administration Shells.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2021 Fraunhofer Institute for Experimental Software Engineering IESE
// SPDX-FileCopyrightText: 2023 Jan Hecht
//
// SPDX-License-Identifier: MIT

use crate::{DataSpecificationIec61360, Reference};
use serde::{Deserialize, Serialize};

#[derive(Clone, PartialEq, Debug, Deserialize, Serialize)]
pub struct EmbeddedDataSpecification {
    #[serde(rename = "dataSpecification")]
    pub data_specification: Reference,
    #[serde(rename = "dataSpecificationContent")]
    pub data_specification_content: DataSpecificationIec61360,
}