pub struct H3Client<C, B>where
C: H3Connector,
B: Body + Send + 'static + Unpin,
B::Data: Send,
B::Error: Into<Error> + Send,{ /* private fields */ }Expand description
http3 client. Note the client does not do dns resolve but blindly sends requests using connections created by the connector. Used for sending HTTP request directly.
Implementations§
Auto Trait Implementations§
impl<C, B> Freeze for H3Client<C, B>
impl<C, B> !RefUnwindSafe for H3Client<C, B>
impl<C, B> Send for H3Client<C, B>
impl<C, B> Sync for H3Client<C, B>
impl<C, B> Unpin for H3Client<C, B>
impl<C, B> !UnwindSafe for H3Client<C, B>
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