Struct aws_smithy_http_server::request::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 the existence of ConnectInfo<T> in the http::Extensions. This is
automatically inserted by the IntoMakeServiceWithConnectInfo
middleware, which can be applied using the into_make_service_with_connect_info method on your generated service.
Tuple Fields§
§0: TThe type produced via Connected.
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>
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