pub struct SearchSql {
pub sql: String,
pub order_by: Option<String>,
pub params: Vec<String>,
}Expand description
Generated search SQL.
Fields§
§sql: StringThe main SQL query.
order_by: Option<String>Optional ORDER BY clause.
params: Vec<String>Query parameters.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SearchSql
impl RefUnwindSafe for SearchSql
impl Send for SearchSql
impl Sync for SearchSql
impl Unpin for SearchSql
impl UnwindSafe for SearchSql
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more