(&self)
| 117 | } |
| 118 | |
| 119 | fn eof(&self) -> bool { |
| 120 | match &self.characters { |
| 121 | Some(chars) => chars.get(self.idx).is_none(), |
| 122 | None => true, |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | fn column(&self, context: *mut sqlite3_context, i: i32) -> Result<()> { |
| 127 | match column(i) { |