This is visible here:
pub trait AllocBytes: Clone + Debug + Eq + PartialEq + Hash + Deref<Target = [u8], Target = [u8]> + DerefMut {
Compared to the actual sources, the Target = [u8] is duplicated at Deref but missing at DerefMut.
pub trait AllocBytes:
Clone + fmt::Debug + Eq + PartialEq + Hash + Deref<Target = [u8]> + DerefMut<Target = [u8]>
(On DerefMut the constraint is redundant, that is likely what is throwing rustdoc off.)
Cc @rust-lang/rustdoc
This is visible here:
Compared to the actual sources, the
Target = [u8]is duplicated atDerefbut missing atDerefMut.(On
DerefMutthe constraint is redundant, that is likely what is throwing rustdoc off.)Cc @rust-lang/rustdoc