Merge pull request #886 from alexcrichton/debug-config

Add a `Debug` implementation for `wsmtime::Config`
This commit is contained in:
Nick Fitzgerald
2020-02-03 21:50:23 +01:00
committed by GitHub
2 changed files with 16 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ pub enum ContextError {
}
/// The collection of features configurable during compilation
#[derive(Clone, Default)]
#[derive(Clone, Default, Debug)]
pub struct Features {
/// marks whether the proposed thread feature is enabled or disabled
pub threads: bool,