tm_rs/components/
graph.rs

1use crate::component::Component;
2use tm_sys::ffi::{tm_graph_component_t, TM_TT_TYPE__GRAPH_COMPONENT};
3
4pub struct GraphComponent;
5
6impl Component for GraphComponent {
7    const NAME: &'static [u8] = TM_TT_TYPE__GRAPH_COMPONENT;
8    type CType = tm_graph_component_t;
9}