Begin building an `UPDATE` query on this table. The returned [`UpdateBuilder `] lets you specify sets and predicates. # Examples ```ignore let affected = users .update() .set("name", "Ada Lovelace") .where_eq("id", 1) .execute()?; ```
(&self)
| 172 | /// .execute()?; |
| 173 | /// ``` |
| 174 | pub fn update(&self) -> UpdateBuilder<T, Unpredicated> { |
| 175 | UpdateBuilder::new(self.name.clone(), Arc::clone(&self.space)) |
| 176 | } |
| 177 | |
| 178 | /// Begin building a `DELETE` query on this table. |
| 179 | /// |