Struct axum::extract::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<T> Deref for ConnectInfo<T>
impl<T> Deref for ConnectInfo<T>
source§impl<T> DerefMut for ConnectInfo<T>
impl<T> DerefMut for ConnectInfo<T>
source§impl<S, T> FromRequestParts<S> for ConnectInfo<T>
impl<S, T> FromRequestParts<S> for ConnectInfo<T>
§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> Freeze for ConnectInfo<T>where
T: Freeze,
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<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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)source§impl<S, T> FromRequest<S, ViaParts> for T
impl<S, T> FromRequest<S, ViaParts> for T
§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.