pub struct Joined3Filter<A, B, C>(/* private fields */);Implementations§
Source§impl<A, B, C> Joined3Filter<A, B, C>
impl<A, B, C> Joined3Filter<A, B, C>
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) -> U,
pub fn order_by_desc<F, U>(self, f: F) -> Selfwhere
F: FnOnce(A, B, C) -> 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)) -> UpdateBuilder<A>
pub fn delete(self) -> DeleteBuilder<A>
pub fn select<F, R>(self, _f: F) -> SelectBuilder<R>where
F: FnOnce(A, B, C) -> R,
Auto Trait Implementations§
impl<A, B, C> Freeze for Joined3Filter<A, B, C>
impl<A, B, C> RefUnwindSafe for Joined3Filter<A, B, C>
impl<A, B, C> Send for Joined3Filter<A, B, C>
impl<A, B, C> Sync for Joined3Filter<A, B, C>
impl<A, B, C> Unpin for Joined3Filter<A, B, C>
impl<A, B, C> UnsafeUnpin for Joined3Filter<A, B, C>
impl<A, B, C> UnwindSafe for Joined3Filter<A, B, C>
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