(mut self, binding: Binding)
| 133 | } |
| 134 | |
| 135 | pub fn binding(mut self, binding: Binding) -> Self { |
| 136 | self.binding = binding; |
| 137 | self |
| 138 | } |
| 139 | |
| 140 | pub fn short_name<T: Into<String>>(mut self, short_name: T) -> Self { |
| 141 | self.short_name = Some(short_name.into()); |