When you want to pass a `std::string` to `std::string_view`, prefer to do such operation during object initialization via `{}` so you can avoid to use the copy constructor, which can be expensive under certain situations.