Sets the path to the PDF file to analyze. # Arguments `path` - Path to the PDF file, convertible to [`PathBuf`] # Examples ```no_run # use learner::pdf::PDFContentBuilder; let builder = PDFContentBuilder::new().path("paper.pdf"); ```
(mut self, path: P)
| 164 | /// let builder = PDFContentBuilder::new().path("paper.pdf"); |
| 165 | /// ``` |
| 166 | pub fn path<P: Into<PathBuf>>(mut self, path: P) -> Self { |
| 167 | self.path = Some(path.into()); |
| 168 | self |
| 169 | } |
| 170 | |
| 171 | /// Analyzes the PDF file and extracts its content. |
| 172 | /// |
no outgoing calls