pub trait IntoMetadataValue {
// Required method
fn into_metadata_value(self) -> Value;
}Expand description
Converts supported Rust values into the metadata backing Value type.
This trait is implemented for the same concrete input types accepted by
Value::new. It exists so crate::Metadata can keep a generic public
API while qubit-value keeps its internal constructor trait private.