Struct aws_smithy_http::connection::ConnectionMetadata
source · pub struct ConnectionMetadata { /* private fields */ }
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
pub fn new( is_proxied: bool, remote_addr: Option<SocketAddr>, poison: impl Fn() + Send + Sync + 'static ) -> Self
Create a new ConnectionMetadata
.
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.
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 more