pub enum ClientH3Event {
Core(H3Event),
NewOutboundRequest {
stream_id: u64,
request_id: u64,
},
}
Expand description
Events produced by ClientH3Driver.
Variants§
Core(H3Event)
NewOutboundRequest
Headers for the request with the given request_id
were sent on
stream_id
. The body, if there is one, could still be sending.
Trait Implementations§
Source§impl Debug for ClientH3Event
impl Debug for ClientH3Event
Auto Trait Implementations§
impl Freeze for ClientH3Event
impl !RefUnwindSafe for ClientH3Event
impl Send for ClientH3Event
impl Sync for ClientH3Event
impl Unpin for ClientH3Event
impl !UnwindSafe for ClientH3Event
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more