rune 0.9.0

An embeddable dynamic programming language for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod consts;
mod custom;
mod description;
mod gen;
mod items;
mod scopes;
#[cfg(compiler_v2)]
mod with_span;

pub(crate) use self::consts::Consts;
pub(crate) use self::custom::Custom;
pub(crate) use self::description::Description;
pub(crate) use self::gen::Gen;
pub(crate) use self::items::Items;
pub(crate) use self::scopes::Scopes;
pub use self::scopes::{ScopeError, ScopeErrorKind};
#[cfg(compiler_v2)]
pub(crate) use self::with_span::{ResultExt, WithSpan};