neo_solidity/runtime/
types.rs

1//! Runtime Types Module
2//!
3//! Common types and utilities for Neo runtime operations.
4
5pub use super::execution::StackItem;
6use serde::{Deserialize, Serialize};
7
8/// Re-export commonly used types
9pub use super::{
10    ExceptionType, ExecutionResult, LogEntry, RuntimeConfig, RuntimeError, RuntimeException,
11    RuntimeStatistics, StackFrame, StateChange, StateChangeType,
12};
13
14include!("types/types_value.rs");
15include!("types/types_wrappers.rs");
16include!("types/types_traits.rs");
17
18#[cfg(test)]
19mod tests;