Skip to content

Instantly share code, notes, and snippets.

@QGB
Created October 31, 2019 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QGB/bb7dc35151d9ec385c32d4453d5960c4 to your computer and use it in GitHub Desktop.
Save QGB/bb7dc35151d9ec385c32d4453d5960c4 to your computer and use it in GitHub Desktop.
3 | println!("[{}]", file_name[1..] );
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
println!("[{}]", &file_name[1..] ); // 借用
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment