Fix no-std build.

This commit is contained in:
Stephen Chung 2021-04-21 10:05:28 +08:00
parent 815f7ba09e
commit 956c57e9d6

View File

@ -5,6 +5,8 @@
use crate::dynamic::Variant;
use crate::{Dynamic, StaticVec};
#[cfg(feature = "no_std")]
use std::prelude::v1::*;
/// Trait that parses arguments to a function call.
///