Trait IntoUndefinedOutputs
pub trait IntoUndefinedOutputs<A: Arch> {
// Required method
fn add(self, target: &mut UndefinedOutputs<A>);
}Expand description
A convenience trait that can convert various types into UndefinedOutputs.
Required Methods§
fn add(self, target: &mut UndefinedOutputs<A>)
fn add(self, target: &mut UndefinedOutputs<A>)
Converts self to an undefined output, and adds it to the list of undefined outputs target.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".