[][src]Trait diesel::query_dsl::methods::ModifyLockDsl

pub trait ModifyLockDsl<Modifier> {
    type Output;
    fn modify_lock(self, modifier: Modifier) -> Self::Output;
}

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

type Output

The type returned by modify_lock. See dsl::SkipLocked and friends for convenient access to this type.

Loading content...

Required methods

fn modify_lock(self, modifier: Modifier) -> Self::Output

See the trait level documentation

Loading content...

Implementors

Loading content...