correct rustc version

This commit is contained in:
Without Boats 2020-03-24 00:34:48 +01:00
parent 4dda632faf
commit 3cc4ef9326

View File

@ -1060,10 +1060,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
#[repr(transparent)]
pub struct IoSlice<'a>(sys::io::IoSlice<'a>);
#[stable(feature = "iovec-send-sync", since = "1.43.0")]
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
unsafe impl<'a> Send for IoSlice<'a> { }
#[stable(feature = "iovec-send-sync", since = "1.43.0")]
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
unsafe impl<'a> Sync for IoSlice<'a> { }
#[stable(feature = "iovec", since = "1.36.0")]