Sets the path for paper document storage. # Arguments `storage_path` - Directory where paper PDFs will be stored
(mut self, storage_path: &Path)
| 449 | /// |
| 450 | /// * `storage_path` - Directory where paper PDFs will be stored |
| 451 | pub fn with_storage_path(mut self, storage_path: &Path) -> Self { |
| 452 | self.storage_path = storage_path.to_path_buf(); |
| 453 | self |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | impl Default for Config { |
no outgoing calls