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§
§impl<T> Clone for ConnectInfo<T>where
T: Clone,
impl<T> Clone for ConnectInfo<T>where
T: Clone,
§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 more§impl<T> Debug for ConnectInfo<T>where
T: Debug,
impl<T> Debug for ConnectInfo<T>where
T: Debug,
§impl<T> Deref for ConnectInfo<T>
impl<T> Deref for ConnectInfo<T>
§impl<T> DerefMut for ConnectInfo<T>
impl<T> DerefMut for ConnectInfo<T>
§fn deref_mut(&mut self) -> &mut <ConnectInfo<T> as Deref>::Target
fn deref_mut(&mut self) -> &mut <ConnectInfo<T> as Deref>::Target
Mutably dereferences the value.
§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.
§fn from_request_parts<'life0, 'life1, 'async_trait>(
parts: &'life0 mut Parts,
state: &'life1 S
) -> Pin<Box<dyn Future<Output = Result<ConnectInfo<T>, <ConnectInfo<T> as FromRequestParts<S>>::Rejection>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
ConnectInfo<T>: 'async_trait,
fn from_request_parts<'life0, 'life1, 'async_trait>(
parts: &'life0 mut Parts,
state: &'life1 S
) -> Pin<Box<dyn Future<Output = Result<ConnectInfo<T>, <ConnectInfo<T> as FromRequestParts<S>>::Rejection>> + Send + 'async_trait>>where
'life0: 'async_trait,
'life1: 'async_trait,
ConnectInfo<T>: 'async_trait,
Perform the extraction.
impl<T> Copy for ConnectInfo<T>where
T: Copy,
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
§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.