pub trait ToSendValue: Send + ToValue {
// Required method
fn to_send_value(&self) -> SendValue;
}Expand description
Converts to SendValue.
Required Methods§
Sourcefn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a SendValue clone of self.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".