macro_rules! to_string_bool { ($value:expr) => { ... }; }
Converts a logical value to a string
use we_cdk::*; #[action] fn _constructor() { let result: String = to_string_bool!(true); }