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
I'd like to switch the bound on T to be T: AsMut<[u8]>, but then I can no longer use a bare Vec<u8> for T, because there is currently no impl<T> AsMut<[T]> for Vec<T>.
It seems to me that such an impl ought to exist, especially because impl<T> AsRef<[T]> for Vec<T> already exists.