pub struct Joined4Filter<A, B, C, D>(/* private fields */);Implementations§
Source§impl<A, B, C, D> Joined4Filter<A, B, C, D>
impl<A, B, C, D> Joined4Filter<A, B, C, D>
pub fn one<R>(self) -> R
pub fn first<R>(self) -> Option<R>
pub fn all<R>(self) -> Vec<R>
pub fn stream<R>(self) -> RowIter<R>
pub fn count(self) -> i64
pub fn order_by<F, U>(self, f: F) -> Selfwhere
F: FnOnce(A, B, C, D) -> U,
pub fn order_by_desc<F, U>(self, f: F) -> Selfwhere
F: FnOnce(A, B, C, D) -> U,
pub fn limit(self, n: i64) -> Self
pub fn offset(self, n: i64) -> Self
pub fn distinct(self) -> Self
pub fn update(self, f: impl FnOnce(&mut A, B, C, D)) -> UpdateBuilder<A>
pub fn delete(self) -> DeleteBuilder<A>
pub fn select<F, R>(self, _f: F) -> SelectBuilder<R>where
F: FnOnce(A, B, C, D) -> R,
Auto Trait Implementations§
impl<A, B, C, D> Freeze for Joined4Filter<A, B, C, D>
impl<A, B, C, D> RefUnwindSafe for Joined4Filter<A, B, C, D>
impl<A, B, C, D> Send for Joined4Filter<A, B, C, D>
impl<A, B, C, D> Sync for Joined4Filter<A, B, C, D>
impl<A, B, C, D> Unpin for Joined4Filter<A, B, C, D>
impl<A, B, C, D> UnsafeUnpin for Joined4Filter<A, B, C, D>
impl<A, B, C, D> UnwindSafe for Joined4Filter<A, B, C, D>
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