(&mut self)
| 2676 | } |
| 2677 | |
| 2678 | fn parse_default_aws_privatelink(&mut self) -> Result<WithOptionValue<Raw>, ParserError> { |
| 2679 | let _ = self.consume_token(&Token::Eq); |
| 2680 | Ok(WithOptionValue::ConnectionAwsPrivatelink( |
| 2681 | self.parse_default_aws_privatelink_()?, |
| 2682 | )) |
| 2683 | } |
| 2684 | |
| 2685 | fn parse_default_aws_privatelink_( |
| 2686 | &mut self, |
no test coverage detected