| Crates.io | to_ref |
| lib.rs | to_ref |
| version | 0.1.1 |
| created_at | 2021-02-22 11:44:17.006142+00 |
| updated_at | 2021-02-22 11:53:46.123652+00 |
| description | let path = url.to_ref:: |
| homepage | https://github.com/iduanyingjie/to_ref |
| repository | https://github.com/iduanyingjie/to_ref |
| max_upload_size | |
| id | 358948 |
| size | 1,838 |
Before:
let url = "www.google.com".to_string();
let path: &Path = url.as_ref();
Now:
let url = "www.google.com".to_string();
let path = url.to_ref::<Path>();