Struct graphul::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 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<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ยง
ยง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.