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