pub struct Cte<T>(/* private fields */);Implementations§
Source§impl<T> Cte<T>
impl<T> Cte<T>
pub fn filter<F>(self, f: F) -> FilterBuilder<T>
pub fn all(self) -> Vec<T>
pub fn one(self) -> T
pub fn first(self) -> Option<T>
pub fn stream(self) -> RowIter<T>
pub fn union(self, other: Self) -> Self
pub fn union_all(self, other: Self) -> Self
pub fn intersect(self, other: Self) -> Self
pub fn except(self, other: Self) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Cte<T>
impl<T> RefUnwindSafe for Cte<T>where
T: RefUnwindSafe,
impl<T> Send for Cte<T>where
T: Send,
impl<T> Sync for Cte<T>where
T: Sync,
impl<T> Unpin for Cte<T>where
T: Unpin,
impl<T> UnsafeUnpin for Cte<T>
impl<T> UnwindSafe for Cte<T>where
T: 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