pub trait ToSendValue: Send + ToValue {
    fn to_send_value(&self) -> SendValue;
}
Expand description

Converts to SendValue.

Required Methods

Returns a SendValue clone of self.

Implementors