Set the Value into an ActiveModel, panic if failed
(&mut self, c: <Self::Entity as EntityTrait>::Column, v: Value)
| 78 | |
| 79 | /// Set the Value into an ActiveModel, panic if failed |
| 80 | fn set(&mut self, c: <Self::Entity as EntityTrait>::Column, v: Value) { |
| 81 | self.try_set(c, v).unwrap() |
| 82 | } |
| 83 | |
| 84 | /// Set the Value into an ActiveModel, return error if failed. |
| 85 | /// |