Level up exports.

This commit is contained in:
Stephen Chung
2021-11-16 12:26:37 +08:00
parent 98707912e0
commit 2fffe31b59
10 changed files with 43 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
//! Module defining macros for developing _plugins_.
use super::call::FnCallArgs;
pub use super::native::CallableFunction;
pub use super::CallableFunction;
use super::FnCallArgs;
pub use crate::{
Dynamic, Engine, EvalAltResult, FnAccess, FnNamespace, ImmutableString, Module,
NativeCallContext, Position,
@@ -9,6 +9,7 @@ pub use crate::{
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
pub use std::{any::TypeId, mem};
pub type RhaiResult = Result<Dynamic, Box<EvalAltResult>>;
#[cfg(not(features = "no_module"))]