Skip to main content

IntoArgument

Trait IntoArgument 

Source
pub trait IntoArgument<A, V>: ArgumentSource<A, V> + Sized
where A: Alignment, V: ValueDomain,
{ // Required method fn into_argument(self) -> Argument<A, V, Self::Retention>; }

Required Methods§

Source

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".

Implementors§

Source§

impl<A, V, S> IntoArgument<A, V> for S
where A: Alignment, V: ValueDomain, S: ArgumentSource<A, V>,