pub trait ResolvedOpArgExt: Sized {
// Required methods
fn value<'a>(&self, args: &'a [Value]) -> Result<&'a Value>;
fn take_value(&self, args: &mut [Value]) -> Result<Value>;
}Required Methods§
fn value<'a>(&self, args: &'a [Value]) -> Result<&'a Value>
fn take_value(&self, args: &mut [Value]) -> Result<Value>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.