You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, glob functions only take &str. changing this to impl AsRef<str> would be a trivial and nonbreaking change that makes usage easier and is almost always prefered for functions that take &strs. Additionally, AsRef<Path> would be much more useful when working with the fs module, but is a breaking change and may need more work as most string manipulation functions arent available for Path.
The text was updated successfully, but these errors were encountered:
currently, glob functions only take
&str
. changing this toimpl AsRef<str>
would be a trivial and nonbreaking change that makes usage easier and is almost always prefered for functions that take&str
s. Additionally,AsRef<Path>
would be much more useful when working with thefs
module, but is a breaking change and may need more work as most string manipulation functions arent available forPath
.The text was updated successfully, but these errors were encountered: