Skip to main content

teaql_core/
trace.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2pub struct TraceNode {
3    pub entity_type: String,
4    pub entity_id: Option<u64>,
5    pub comment: String,
6}