mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
Inline socket function implementations
This commit is contained in:
parent
174c0e86ca
commit
3abc30719e
@ -184,6 +184,7 @@ pub mod net {
|
||||
unimpl!();
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -306,6 +307,7 @@ pub mod net {
|
||||
unimpl!();
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -372,6 +374,7 @@ pub mod net {
|
||||
unimpl!();
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
|
@ -185,6 +185,7 @@ impl TcpStream {
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -275,6 +276,7 @@ impl TcpListener {
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -438,6 +440,7 @@ impl UdpSocket {
|
||||
unsupported()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
|
@ -239,6 +239,7 @@ impl TcpStream {
|
||||
Ok(TcpStream { inner: sock })
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -428,6 +429,7 @@ impl TcpListener {
|
||||
Ok(TcpListener { inner: sock })
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
@ -518,6 +520,7 @@ impl UdpSocket {
|
||||
Ok(UdpSocket { inner: sock })
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn socket(&self) -> &Socket {
|
||||
&self.inner
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user