pub struct SqlSelect {
pub columns: SqlColumns,
pub collection: String,
pub predicate: Option<SqlPredicate>,
pub order_by: Option<OrderBy>,
pub limit: Option<usize>,
pub param_count: usize,
}Fields§
§columns: SqlColumns§collection: String§predicate: Option<SqlPredicate>§order_by: Option<OrderBy>§limit: Option<usize>§param_count: usizeTrait Implementations§
impl Eq for SqlSelect
impl StructuralPartialEq for SqlSelect
Auto Trait Implementations§
impl Freeze for SqlSelect
impl RefUnwindSafe for SqlSelect
impl Send for SqlSelect
impl Sync for SqlSelect
impl Unpin for SqlSelect
impl UnsafeUnpin for SqlSelect
impl UnwindSafe for SqlSelect
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