pub trait OperationArgs: Sized {
// Provided methods
fn from_args(args: &[Variable]) -> Option<Self> { ... }
fn as_args(&self) -> Option<Vec<Variable>> { ... }
}
Expand description
A type that represents an operation’s arguments
Provided Methods§
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.