tmflib 0.1.38

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Performance Management Example
//!

use tmflib::tmf628::performance_measurement::PerformanceMeasurement;
use tmflib::{HasDescription, HasEntity};

fn main() {
    let perf = PerformanceMeasurement::create().description("Example Performance Measurement");

    dbg!(perf);
}