pub trait AsChangeset {
    type Target: QuerySource;
    type Changeset;

    fn as_changeset(self) -> Self::Changeset;
}
Expand description

Types which can be passed to update.set.

This trait can be derived

Required Associated Types§

The table which Self::Changeset will be updating

The update statement this type represents

Required Methods§

Convert self into the actual update statement being executed

Implementations on Foreign Types§

Implementors§