We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
escape_byte_string
B: IntoIterator<Item=u8>
If we change the signature from
pub fn escape_byte_string<B>(bytes: B) -> String where B: AsRef<[u8]>,
to
pub fn escape_byte_string<B>(bytes: B) -> String where B: IntoIterator<Item=u8>,
then we can pass more types to the function, e.g. VecDeque<u8>.
VecDeque<u8>
The implementation would not change much because we create an iterator anyway. Current implementation:
let bytes = bytes.as_ref(); bytes .iter() //...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If we change the signature from
to
then we can pass more types to the function, e.g.
VecDeque<u8>
.The implementation would not change much because we create an iterator anyway. Current implementation:
The text was updated successfully, but these errors were encountered: