Builder method to set column
(mut self, column: u32)
| 194 | |
| 195 | /// Builder method to set column |
| 196 | pub fn with_column(mut self, column: u32) -> Self { |
| 197 | self.column = Some(column); |
| 198 | self |
| 199 | } |
| 200 | |
| 201 | /// Builder method to set signature |
| 202 | pub fn with_signature(mut self, signature: impl Into<String>) -> Self { |
no outgoing calls