Как преобразовать Vec в
#substrate Вопрос: let container_returned_data = container::Module::<T>::check_for_app_name(amp;app_id,amp;instruction_name); //container_returned_data is tuple contains (bool,Vec<(Vec<u8>,Vec<u8>)>) if container_returned_data.0{ let d = container_returned_data.1[0].1.clone(); let data_str:amp;str = from_utf8(amp;d).unwrap(); let data_str2 = data_str.to_string(); debug::error!(target:"runner","{:?}",amp;data_str2); // debug::error!(target:"norm","{:?}",amp;data_str2); Self::function_executer(data_str); //now…