summaryrefslogtreecommitdiff
path: root/rust/src/platform.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/platform.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/platform.rs')
-rw-r--r--rust/src/platform.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/src/platform.rs b/rust/src/platform.rs
index 609f4edc..ed4f49f4 100644
--- a/rust/src/platform.rs
+++ b/rust/src/platform.rs
@@ -14,15 +14,15 @@
//! Contains all information related to the execution environment of the binary, mainly the calling conventions used
-use crate::type_container::TypeContainer;
-use crate::type_parser::{TypeParserError, TypeParserErrorSeverity, TypeParserResult};
use crate::{
architecture::{Architecture, CoreArchitecture},
calling_convention::CoreCallingConvention,
rc::*,
string::*,
- type_library::TypeLibrary,
- types::QualifiedNameAndType,
+ types::{
+ QualifiedNameAndType, TypeContainer, TypeLibrary, TypeParserError, TypeParserErrorSeverity,
+ TypeParserResult,
+ },
};
use binaryninjacore_sys::*;
use std::fmt::Debug;