“borrowed value does not live long enough” when using as_slice()

点点圈 提交于 2019-11-28 13:22:24
Arjan

The problem here is that you are not storing the result of from_base64 anywhere and then take a reference to it by calling as_slice. Chaining calls like that causes the result of from_base64 to go out of scope at the end of the line and the reference taken is no longer valid.

extern crate rustc_serialize; // 0.3.24

use rustc_serialize::base64::FromBase64;

fn main() {
    let a: [u8; 30] = [0; 30];
    let b = a.from_base64().unwrap();
    println!("{:?}", b.as_slice());
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!