pub struct ConnectionInfo { /* private fields */ }
Expand description
Information relating to the current underlying HTTP connection.
It includes the peer address.
§Guide
Check out the guide
for more details on ConnectionInfo
.
Implementations§
source§impl ConnectionInfo
impl ConnectionInfo
sourcepub fn peer_addr(&self) -> SocketAddr
pub fn peer_addr(&self) -> SocketAddr
Returns the peer address.
§Example
use pavex::connection::ConnectionInfo;
use pavex::response::Response;
// The `ConnectionInfo` extractor can be used to access a peer's address within a handler.
pub fn echo_ip(conn_info: &ConnectionInfo) -> Response {
let body = format!(
"The peer address for this connection is {}",
conn_info.peer_addr()
);
Response::ok().set_typed_body(body)
}
Trait Implementations§
source§impl Clone for ConnectionInfo
impl Clone for ConnectionInfo
source§fn clone(&self) -> ConnectionInfo
fn clone(&self) -> ConnectionInfo
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 ConnectionInfo
impl RefUnwindSafe for ConnectionInfo
impl Send for ConnectionInfo
impl Sync for ConnectionInfo
impl Unpin for ConnectionInfo
impl UnwindSafe for ConnectionInfo
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)