tmflib 0.1.38

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Sample Example Module

// Running this example forces an execution of build.rs if build.rs
// has changes or any of the input OAS JSON files have changed.
// We then include the resulting generated auto-lib.rs parent library
// to make use of the generated modules.

// include!(concat!(env!("OUT_DIR"), "/auto-lib.rs"));

// This module and struct are auto-generated
use tmflib::tmf723::ManagedPolicy;

fn main() {
    let policy = ManagedPolicy::default();
    dbg!(policy);
    println!("There is a message about auto-generation");
}