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

pub trait ForUpdateDsl {
    type Output;
    fn for_update(self) -> Self::Output;
}
Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

The for_update method

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 for_update from generic code.

Associated Types

type Output

Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

The type returned by for_update. See dsl::ForUpdate for convenient access to this type.

Loading content...

Required methods

fn for_update(self) -> Self::Output

Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

See the trait level documentation

Loading content...

Implementors

impl<T> ForUpdateDsl for T where
    T: LockingDsl<ForUpdate>, 
[src]

type Output = <T as LockingDsl<ForUpdate>>::Output

Deprecated since 1.3.0:

use LockingDsl<ForUpdate> instead

Loading content...