cadmpeg-ir 0.1.4

CAD data model, validation, diffing, and codec API for cadmpeg.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
//! Reserved assembly model.

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// Placeholder for assembly instancing, component trees, and joint constraints.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[non_exhaustive]
pub enum Assembly {
    /// Marks assembly structure as unavailable.
    Reserved,
}