(&mut self, value: bool)
| 768 | } |
| 769 | |
| 770 | pub fn outer(&mut self, value: bool) -> &mut Self { |
| 771 | self.outer = value; |
| 772 | self |
| 773 | } |
| 774 | |
| 775 | pub fn build(&self) -> Result<ast::TableFactor, BuilderError> { |
| 776 | let input = self.input_expr.clone().ok_or_else(|| { |
no outgoing calls
no test coverage detected