to_string_binary

Macro to_string_binary 

Source
macro_rules! to_string_binary {
    ($value:expr) => { ... };
}
Expand description

Converts an binary to a string

ยงUsage

use we_cdk::*;

#[action]
fn _constructor() {
    let result: String = to_string_binary!(&[0, 1]);
}