pub struct ConnectionMetadata { /* private fields */ }
Available on crate feature
client
only.Expand description
Metadata that tracks the state of an active connection.
Implementations§
source§impl ConnectionMetadata
impl ConnectionMetadata
sourcepub fn new(
is_proxied: bool,
remote_addr: Option<SocketAddr>,
poison: impl Fn() + Send + Sync + 'static
) -> Self
👎Deprecated since 1.1.0: ConnectionMetadata::new
is deprecated in favour of ConnectionMetadata::builder
.
pub fn new( is_proxied: bool, remote_addr: Option<SocketAddr>, poison: impl Fn() + Send + Sync + 'static ) -> Self
ConnectionMetadata::new
is deprecated in favour of ConnectionMetadata::builder
.Create a new ConnectionMetadata
.
sourcepub fn builder() -> ConnectionMetadataBuilder
pub fn builder() -> ConnectionMetadataBuilder
Builder for this connection metadata
sourcepub fn remote_addr(&self) -> Option<SocketAddr>
pub fn remote_addr(&self) -> Option<SocketAddr>
Get the remote address for this connection, if one is set.
sourcepub fn local_addr(&self) -> Option<SocketAddr>
pub fn local_addr(&self) -> Option<SocketAddr>
Get the local address for this connection, if one is set.
Trait Implementations§
source§impl Clone for ConnectionMetadata
impl Clone for ConnectionMetadata
source§fn clone(&self) -> ConnectionMetadata
fn clone(&self) -> ConnectionMetadata
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 !RefUnwindSafe for ConnectionMetadata
impl Send for ConnectionMetadata
impl Sync for ConnectionMetadata
impl Unpin for ConnectionMetadata
impl !UnwindSafe for ConnectionMetadata
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> 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>
Creates a shared type from an unshared type.