pub trait ExportService: Send + Sync {
// Required method
fn export_html(
&self,
source_path: &str,
output_dir: &Path,
encrypt: bool,
password: Option<&str>,
show_timestamps: bool,
) -> Result<ExportResult, String>;
}Expand description
HTML/markdown export.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".