Trait ToSendValue

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

Converts to SendValue.

Required Methods§

Source

fn to_send_value(&self) -> SendValue

Returns a SendValue clone of self.

Implementations on Foreign Types§

Source§

impl<T: SetValueOptional + Send + ToValue> ToSendValue for Option<T>

Implementors§