Trait UpdateParams

Source
pub trait UpdateParams {
    // Required method
    fn params(&self) -> Vec<&(dyn ToSql + Sync)>;
}
Expand description

Trait for providing UPDATE parameters. This trait is implemented by the derive macro UpdateParams.

Required Methods§

Source

fn params(&self) -> Vec<&(dyn ToSql + Sync)>

Returns a vector of references to SQL parameters for UPDATE operations.

Implementors§