pub trait ToTupleBuffer {
    fn write_tuple_data(&self, w: &mut impl Write) -> Result<()>;

    fn to_tuple_buffer(&self) -> Result<TupleBuffer> { ... }
}
Expand description

ToTupleBuffer Types implementing this trait can be converted to tarantool tuple (msgpack array).

Required Methods§

Provided Methods§

Implementors§