Skip to main content

ViewParams

Trait ViewParams 

Source
pub trait ViewParams: Send {
    // Required method
    fn bind_view_params(self, stmt: RawSqlStmt) -> Result<RawSqlStmt>;
}
Expand description

Typed bind values for a custom SQL View.

Required Methods§

Source

fn bind_view_params(self, stmt: RawSqlStmt) -> Result<RawSqlStmt>

Adds this parameter set to a raw SQL statement.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ViewParams for ()

Implementors§