1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 ZeroDDS Contributors
//! Data-Tagging-Plugin SPI (OMG DDS-Security 1.1 §8.7).
//!
//! Optional-Plugin fuer Application-Level-Labels (Classification-
//! Marker, Data-Sensitivity, etc.). Wird an jeden DataWriter/Reader
//! mitgeliefert und auf dem Wire via `DataTags`-Submessage propagiert.
//!
//! In v1.3 nur als Trait-Interface — produktive Nutzung kommt erst
//! mit NGVA/FACE-Integration in v2.0.
//!
//! zerodds-lint: allow no_dyn_in_safe
//! (Plugin-SPI benötigt `Box<dyn DataTaggingPlugin>`.)
extern crate alloc;
use Box;
use String;
use Vec;
/// Ein Tag = Name + Value-Paar (vergleichbar mit [`crate::Property`],
/// aber auf Application-Data-Level, nicht auf Participant-Config-Level).
/// Data-Tagging-Plugin (Spec §8.7.2).
/// Factory-Alias.
pub type DataTaggingBox = ;