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 for application-level labels (classification
//! markers, data sensitivity, etc.). Attached to every DataWriter/Reader
//! and propagated on the wire via the `DataTags` submessage.
//!
//! In v1.3 only as a trait interface — production use only comes
//! with NGVA/FACE integration in v2.0.
//!
//! zerodds-lint: allow no_dyn_in_safe
//! (The plugin SPI needs `Box<dyn DataTaggingPlugin>`.)
extern crate alloc;
use Box;
use String;
use Vec;
/// A tag = name + value pair (comparable to [`crate::Property`],
/// but at application-data level, not at participant-config level).
/// Data tagging plugin (spec §8.7.2).
/// Factory alias.
pub type DataTaggingBox = ;