pub trait ToInputValue<S = DefaultScalarValue> {
// Required method
fn to_input_value(&self) -> InputValue<S>;
}Expand description
Losslessly clones a Rust data type into an InputValue.
Required Methods§
Sourcefn to_input_value(&self) -> InputValue<S>
fn to_input_value(&self) -> InputValue<S>
Performs the conversion.