sandkiste
provides an abstract API for the Rust programming language to allow
executing scripting language code snippets in a sandbox.
See contained LICENSE
file (MIT License).
MaybeFunction
and MaybeOpaque
traits
Borrow
as supertrait to MaybeFunction::FunctionRef
and
MaybeOpaque::OpaqueRef
TryInto
as supertrait to MaybeOpaque
and added methods
MaybeOpaque::try_into_opaque
and MaybeOpaque::is_opaque
with
default implementationsFrom<Self::Function>
as supertrait to MaybeFunction
MaybeFunction::from_function
in favor of using the
From
traitMaybeFunction::FunctionRef<'a>
and
MaybeOpaque::OpaqueRef<'a>
have been removed and must be provided
manually.