(mut self, param_types: Vec<SqlScalarType>)
| 87 | } |
| 88 | |
| 89 | fn with_params(mut self, param_types: Vec<SqlScalarType>) -> Self { |
| 90 | self.param_types = param_types; |
| 91 | self |
| 92 | } |
| 93 | |
| 94 | fn with_is_copy(mut self) -> Self { |
| 95 | self.is_copy = true; |
no outgoing calls
no test coverage detected