(&mut self, value: ast::ObjectName)
| 570 | |
| 571 | impl TableRelationBuilder { |
| 572 | pub fn name(&mut self, value: ast::ObjectName) -> &mut Self { |
| 573 | self.name = Some(value); |
| 574 | self |
| 575 | } |
| 576 | pub fn alias(&mut self, value: Option<ast::TableAlias>) -> &mut Self { |
| 577 | self.alias = value; |
| 578 | self |
no outgoing calls
no test coverage detected