Get mutable access to the inner [MirRelationExpr] Callers of this method need to ensure that the underlying expression stays optimized after any mutations are applied
(&mut self)
| 79 | /// Callers of this method need to ensure that the underlying expression stays optimized after |
| 80 | /// any mutations are applied |
| 81 | pub fn as_inner_mut(&mut self) -> &mut MirRelationExpr { |
| 82 | &mut self.0 |
| 83 | } |
| 84 | |
| 85 | pub fn into_inner(self) -> MirRelationExpr { |
| 86 | self.0 |
no outgoing calls
no test coverage detected