openc2 0.2.0

Rust types for OpenC2 commands and responses
Documentation
1
2
3
4
5
6
7
use crate::Nsid;

/// An OpenC2 actuator profile.
pub trait Profile {
    /// Returns the profile's namespace identifier.
    fn ns() -> &'static Nsid;
}