The Rune Language, an embeddable dynamic programming language for Rust.
pub use self::error::Error;
pub use self::boxed::Box;
pub use self::hashbrown::map as hash_map;
pub use self::hashbrown::set as hash_set;
pub use self::vec::Vec;
pub use self::vec_deque::VecDeque;
pub use self::string::String;
Box<T>
type for heap allocation.TryClone
trait for types that cannot be ‘implicitly copied’.hashbrown
crate.str
primitive type.Vec<T>
.String
using interpolation of runtime expressions.HashMap
where the value is ()
.Result
aliased specialized towards an allocation Error
.