Struct axum::extract::connect_info::ConnectInfo
source · pub struct ConnectInfo<T>(pub T);
Expand description
Extractor for getting connection information produced by a Connected
.
Note this extractor requires you to use
Router::into_make_service_with_connect_info
to run your app
otherwise it will fail at runtime.
See Router::into_make_service_with_connect_info
for more details.
Tuple Fields§
§0: T
Trait Implementations§
source§impl<T: Clone> Clone for ConnectInfo<T>
impl<T: Clone> Clone for ConnectInfo<T>
source§fn clone(&self) -> ConnectInfo<T>
fn clone(&self) -> ConnectInfo<T>
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 moresource§impl<T: Debug> Debug for ConnectInfo<T>
impl<T: Debug> Debug for ConnectInfo<T>
source§impl<S, T> FromRequestParts<S> for ConnectInfo<T>where
S: Send + Sync,
T: Clone + Send + Sync + 'static,
impl<S, T> FromRequestParts<S> for ConnectInfo<T>where S: Send + Sync, T: Clone + Send + Sync + 'static,
§type Rejection = <Extension<ConnectInfo<T>> as FromRequestParts<S>>::Rejection
type Rejection = <Extension<ConnectInfo<T>> as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.
impl<T: Copy> Copy for ConnectInfo<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for ConnectInfo<T>where T: RefUnwindSafe,
impl<T> Send for ConnectInfo<T>where T: Send,
impl<T> Sync for ConnectInfo<T>where T: Sync,
impl<T> Unpin for ConnectInfo<T>where T: Unpin,
impl<T> UnwindSafe for ConnectInfo<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<S, B, T> FromRequest<S, B, ViaParts> for Twhere
B: Send + 'static,
S: Send + Sync,
T: FromRequestParts<S>,
impl<S, B, T> FromRequest<S, B, ViaParts> for Twhere B: Send + 'static, S: Send + Sync, T: FromRequestParts<S>,
§type Rejection = <T as FromRequestParts<S>>::Rejection
type Rejection = <T as FromRequestParts<S>>::Rejection
If the extractor fails it’ll use this “rejection” type. A rejection is
a kind of error that can be converted into a response.