Trait diesel::query_dsl::methods::ModifyLockDsl
source · pub trait ModifyLockDsl<Modifier> {
type Output;
// Required method
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.
Required Associated Types§
sourcetype Output
type Output
The type returned by modify_lock
. See dsl::SkipLocked
and friends
for convenient access to this type.
Required Methods§
sourcefn modify_lock(self, modifier: Modifier) -> Self::Output
fn modify_lock(self, modifier: Modifier) -> Self::Output
See the trait level documentation