pub trait IntoValue {
// Required method
fn into_value(self) -> Value;
}Expand description
A trait for types that can be written via MessagePack. This is mostly a convenience to avoid having to wrap them yourself each time.
pub trait IntoValue {
// Required method
fn into_value(self) -> Value;
}A trait for types that can be written via MessagePack. This is mostly a convenience to avoid having to wrap them yourself each time.