(&self)
| 116 | |
| 117 | impl<Rel> SqlTransform<Rel> { |
| 118 | pub fn as_str(&self) -> &str { |
| 119 | match self { |
| 120 | SqlTransform::Super(t) => t.as_ref(), |
| 121 | _ => self.as_ref(), |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | pub fn into_super_and<T, F: FnOnce(rq::Transform) -> Result<T, rq::Transform>>( |
| 126 | self, |
no outgoing calls