(self, context: C)
| 222 | |
| 223 | impl<L, S> MigrationPlanBuilder<L, S, ()> { |
| 224 | pub fn context<C>(self, context: C) -> MigrationPlanBuilder<L, S, C> { |
| 225 | MigrationPlanBuilder { |
| 226 | target: self.target, |
| 227 | migrations: self.migrations, |
| 228 | state_store: self.state_store, |
| 229 | context, |
| 230 | allow_divergent: self.allow_divergent, |
| 231 | update_divergent: self.update_divergent, |
| 232 | allow_missing: self.allow_missing, |
| 233 | remove_missing: self.remove_missing, |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | impl<L, S, C> MigrationPlanBuilder<L, S, C> { |
no outgoing calls
no test coverage detected