summaryrefslogtreecommitdiffstats
path: root/src/renderer/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/mod.rs')
-rw-r--r--src/renderer/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs
index 78d208e2..41176ae0 100644
--- a/src/renderer/mod.rs
+++ b/src/renderer/mod.rs
@@ -64,6 +64,7 @@ pub struct RenderContext {
/// renderers to cache intermediate results, this directory is not
/// guaranteed to be empty or even exist.
pub destination: PathBuf,
+ __non_exhaustive: (),
}
impl RenderContext {
@@ -79,6 +80,7 @@ impl RenderContext {
version: ::MDBOOK_VERSION.to_string(),
root: root.into(),
destination: destination.into(),
+ __non_exhaustive: (),
}
}