Struct lexa_framework::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: TTrait Implementations§
source§impl<T> Clone for ConnectInfo<T>where
T: Clone,
impl<T> Clone for ConnectInfo<T>where T: Clone,
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 for ConnectInfo<T>where
T: Debug,
impl<T> Debug for ConnectInfo<T>where T: Debug,
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>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.
source§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, Global>>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, Global>>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> 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<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<T, A> DynAccess<T> for Awhere A: Access<T>, <A as Access<T>>::Guard: 'static,
§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.