summaryrefslogtreecommitdiff
path: root/rust/src/data_notification.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-12-11 14:45:23 -0500
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-12-15 19:29:56 -0500
commitca0e32efb1e5b9eba157e9fd2eef178d9367c578 (patch)
tree12f9eab134807a4b2821e04ada4795e6611ea45f /rust/src/data_notification.rs
parenta83f2082799695b85b732987adb21112d042b152 (diff)
[Rust] Restructure type APIs into `types` module
This helps with documentation, giving a single module for those working with types to find related APIs Also split out enumeration and structure APIs into their own file, since they have their own backing data separate from `Type`.
Diffstat (limited to 'rust/src/data_notification.rs')
-rw-r--r--rust/src/data_notification.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/src/data_notification.rs b/rust/src/data_notification.rs
index 7749e792..d01a5ed3 100644
--- a/rust/src/data_notification.rs
+++ b/rust/src/data_notification.rs
@@ -15,8 +15,7 @@ use crate::section::Section;
use crate::segment::Segment;
use crate::symbol::Symbol;
use crate::tags::{TagReference, TagType};
-use crate::type_archive::TypeArchive;
-use crate::types::{QualifiedName, Type};
+use crate::types::{QualifiedName, Type, TypeArchive};
use crate::variable::DataVariable;
macro_rules! trait_handler {