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
and TokenStream impls Display but not AsStr<str> .
this isnt a major issue since i can just call to_string() on my side, I just wanted to open this issue to see if we can fit this into a maybe #624 release
The text was updated successfully, but these errors were encountered:
As the title says, currently has a few apis where the function looks like this
Internally this is calling
to_string()
, so we should simply require the Path or Attribute implementstd::fmt::Display
I am using
quote!
to generate rust attributesand
TokenStream
implsDisplay
but notAsStr<str>
.this isnt a major issue since i can just call
to_string()
on my side, I just wanted to open this issue to see if we can fit this into a maybe #624 releaseThe text was updated successfully, but these errors were encountered: