mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
spaces between braces really ruin readability
This commit is contained in:
parent
3cc4ef9326
commit
03c64bf532
@ -952,10 +952,10 @@ pub trait Read {
|
||||
pub struct IoSliceMut<'a>(sys::io::IoSliceMut<'a>);
|
||||
|
||||
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
|
||||
unsafe impl<'a> Send for IoSliceMut<'a> { }
|
||||
unsafe impl<'a> Send for IoSliceMut<'a> {}
|
||||
|
||||
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
|
||||
unsafe impl<'a> Sync for IoSliceMut<'a> { }
|
||||
unsafe impl<'a> Sync for IoSliceMut<'a> {}
|
||||
|
||||
#[stable(feature = "iovec", since = "1.36.0")]
|
||||
impl<'a> fmt::Debug for IoSliceMut<'a> {
|
||||
@ -1061,10 +1061,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
|
||||
pub struct IoSlice<'a>(sys::io::IoSlice<'a>);
|
||||
|
||||
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
|
||||
unsafe impl<'a> Send for IoSlice<'a> { }
|
||||
unsafe impl<'a> Send for IoSlice<'a> {}
|
||||
|
||||
#[stable(feature = "iovec-send-sync", since = "1.44.0")]
|
||||
unsafe impl<'a> Sync for IoSlice<'a> { }
|
||||
unsafe impl<'a> Sync for IoSlice<'a> {}
|
||||
|
||||
#[stable(feature = "iovec", since = "1.36.0")]
|
||||
impl<'a> fmt::Debug for IoSlice<'a> {
|
||||
|
Loading…
Reference in New Issue
Block a user