macro_rules! try_runtime_and_std_not_enabled { ($($input:tt)*) => { ... }; }
Expand description
Enable/disable the given code depending on
all(not(feature = "try-runtime"), not(feature = "std"))
being enabled for the crate or not.
§Example
// Will add the code depending on the feature being enabled or not.
try_runtime_and_std_not_enabled!( println!("Hello") )