Struct tonic::transport::server::TcpConnectInfo
source · pub struct TcpConnectInfo {
pub local_addr: Option<SocketAddr>,
pub remote_addr: Option<SocketAddr>,
}
Expand description
Connection info for standard TCP streams.
This type will be accessible through request extensions if you’re using the default non-TLS connector.
See Connected
for more details.
Fields§
§local_addr: Option<SocketAddr>
Returns the local address of this connection.
remote_addr: Option<SocketAddr>
Returns the remote (peer) address of this connection.
Implementations§
source§impl TcpConnectInfo
impl TcpConnectInfo
sourcepub fn local_addr(&self) -> Option<SocketAddr>
pub fn local_addr(&self) -> Option<SocketAddr>
Return the local address the IO resource is connected.
sourcepub fn remote_addr(&self) -> Option<SocketAddr>
pub fn remote_addr(&self) -> Option<SocketAddr>
Return the remote address the IO resource is connected too.
Trait Implementations§
source§impl Clone for TcpConnectInfo
impl Clone for TcpConnectInfo
source§fn clone(&self) -> TcpConnectInfo
fn clone(&self) -> TcpConnectInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for TcpConnectInfo
impl RefUnwindSafe for TcpConnectInfo
impl Send for TcpConnectInfo
impl Sync for TcpConnectInfo
impl Unpin for TcpConnectInfo
impl UnwindSafe for TcpConnectInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request