set publish to false, update meta links (#258)

This commit is contained in:
Sean McArthur
2019-06-06 13:58:22 -07:00
committed by Carl Lerche
parent dc961c3e78
commit 60aceba2bb
5 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -1070,4 +1070,4 @@ impl Buf for Option<[u8; 1]> {
// The existance of this function makes the compiler catch if the Buf
// trait is "object-safe" or not.
fn _assert_trait_object(_b: &Buf) {}
fn _assert_trait_object(_b: &dyn Buf) {}
+1 -1
View File
@@ -1083,4 +1083,4 @@ impl BufMut for Vec<u8> {
// The existance of this function makes the compiler catch if the BufMut
// trait is "object-safe" or not.
fn _assert_trait_object(_b: &BufMut) {}
fn _assert_trait_object(_b: &dyn BufMut) {}