tmflib 0.1.38

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Appointment booking example

#[cfg(all(feature = "tmf646", feature = "build-V4"))]
use tmflib::tmf646::appointment::Appointment;

fn main() {
    #[cfg(all(feature = "tmf646", feature = "build-V4"))]
    {
        let appointment = Appointment::new();

        dbg!(appointment);
    }
}