Struct fire_postgres::filter::Filter  
source · #[non_exhaustive]pub struct Filter<'a> {
    pub whr: Where,
    pub order_by: OrderBy,
    pub limit: Limit,
    pub offset: Offset,
    pub params: Params<'a>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.whr: Where§order_by: OrderBy§limit: Limit§offset: Offset§params: Params<'a>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Filter<'a>
impl<'a> !RefUnwindSafe for Filter<'a>
impl<'a> Send for Filter<'a>
impl<'a> Sync for Filter<'a>
impl<'a> Unpin for Filter<'a>
impl<'a> !UnwindSafe for Filter<'a>
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