pub trait ModifyLockDsl<Modifier> {
type Output;
fn modify_lock(self, modifier: Modifier) -> Self::Output;
}
Expand description
Methods related to modifiers on locking select statements
This trait should not be relied on directly by most apps. Its behavior is
provided by QueryDsl
. However, you may need a where clause on this trait
to call skip_locked
from generic code.
Associated Types
The type returned by modify_lock
. See dsl::SkipLocked
and friends
for convenient access to this type.
Required methods
fn modify_lock(self, modifier: Modifier) -> Self::Output
fn modify_lock(self, modifier: Modifier) -> Self::Output
See the trait level documentation