-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement FromIterator<char> for ArrayString #119
Comments
|
So it's not that easy because If so maybe i'll work on a PR |
@elichai That won't work so well, ArrayString should be a wrapper around "ArrayVecCopy" (not yet implemented). |
Closely related is |
Hi,
I want to use ArrayString in
rustc_hex::ToHex
, this trait works on every type that implements FromIterator on Item=char.But ArrayString is Item=u8.
Is there a reason this isn't Item=char?
The text was updated successfully, but these errors were encountered: