Trait sourceview5::prelude::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.

Implementors§

source§

impl<T> ToSendValue for T
where T: Send + ToValue + ?Sized,