pub trait IntoArgument<A, V>: ArgumentSource<A, V> + Sizedwhere
A: Alignment,
V: ValueDomain,{
// Required method
fn into_argument(self) -> Argument<A, V, Self::Retention>;
}Required Methods§
fn into_argument(self) -> Argument<A, V, Self::Retention>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".