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
// SPDX-FileCopyrightText: 2023 Jan Hecht
//
// SPDX-License-Identifier: MIT

use serde::{Deserialize, Serialize};

#[derive(Clone, PartialEq, Debug, Deserialize, Serialize)]
pub struct LevelType {
    pub max: bool,
    pub min: bool,
    pub nom: bool,
    pub typ: bool,
}