#path #ref #url #now

to_ref

let path = url.to_ref::<Path>();

2个版本

0.1.1 2021年2月22日
0.1.0 2021年2月22日

#29 in #ref

MIT 许可证

2KB

之前

let url = "www.google.com".to_string();
let path: &Path = url.as_ref();

现在

let url = "www.google.com".to_string();
let path = url.to_ref::<Path>();

无运行时依赖