RowBuilder

Trait RowBuilder 

Source
pub trait RowBuilder {
    // Required method
    fn apply<K: ColumnType>(self, block: &mut Block<K>) -> Result<()>;
}

Required Methods§

Source

fn apply<K: ColumnType>(self, block: &mut Block<K>) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RowBuilder for Vec<(String, Value)>

Source§

fn apply<K: ColumnType>(self, block: &mut Block<K>) -> Result<()>

Implementors§