Rebuild this cursor positioned at `pos`.
(mut self, pos: CursorPosition)
| 63 | |
| 64 | /// Rebuild this cursor positioned at `pos`. |
| 65 | fn at_position(mut self, pos: CursorPosition) -> Self |
| 66 | where |
| 67 | Self: Sized, |
| 68 | { |
| 69 | self.set_position(pos); |
| 70 | self |
| 71 | } |
| 72 | |
| 73 | /// Rebuild this cursor positioned at `inst`. |
| 74 | /// |