(&self, path: String, pretty: bool)
| 311 | } |
| 312 | |
| 313 | pub fn save(&self, path: String, pretty: bool) -> RbResult<()> { |
| 314 | self.read_inner()? |
| 315 | .save(&path, pretty) |
| 316 | .map_err(RbError::from) |
| 317 | } |
| 318 | |
| 319 | pub fn num_special_tokens_to_add(&self, is_pair: bool) -> RbResult<usize> { |
| 320 | Ok(self |