pub struct ModFn<F>(/* private fields */);Expand description
A Mod from a closure.
The building block every select::* / insert::* helper is written in terms
of: pub fn where_<Q: HasWhere>(e: impl Expression + 'static) -> impl Mod<Q>
returns one of these.
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for ModFn<F>where
F: Freeze,
impl<F> RefUnwindSafe for ModFn<F>where
F: RefUnwindSafe,
impl<F> Send for ModFn<F>where
F: Send,
impl<F> Sync for ModFn<F>where
F: Sync,
impl<F> Unpin for ModFn<F>where
F: Unpin,
impl<F> UnsafeUnpin for ModFn<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for ModFn<F>where
F: 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