pub trait IntoOutput {
// Required method
fn into_output(self) -> Result<Value, RuntimeError>;
}
Expand description
Trait used to coerce values into outputs.
Required Methods§
Sourcefn into_output(self) -> Result<Value, RuntimeError>
fn into_output(self) -> Result<Value, RuntimeError>
Coerce the current value into an output.