pub struct ConnectionSummary {
pub stream_map: StreamMap,
pub stats: Option<Stats>,
pub path_stats: Vec<PathStats>,
pub conn_close_details: ConnectionCloseDetails,
}
Expand description
A summary of all frames received on a connection. There are some extra fields included to provide additional context into the connection’s behavior.
ConnectionSummary implements Serialize. HTTP/3 frames that contain binary payload are serialized using the qlog hexstring format - “an even-length lowercase string of hexadecimally encoded bytes examples: 82dc, 027339, 4cdbfd9bf0”
Fields§
§stream_map: StreamMap
§stats: Option<Stats>
L4 statistics received from the connection.
path_stats: Vec<PathStats>
Statistics about all paths of the connection.
conn_close_details: ConnectionCloseDetails
Details about why the connection closed.
Trait Implementations§
Source§impl Debug for ConnectionSummary
impl Debug for ConnectionSummary
Source§impl Default for ConnectionSummary
impl Default for ConnectionSummary
Source§fn default() -> ConnectionSummary
fn default() -> ConnectionSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConnectionSummary
impl !RefUnwindSafe for ConnectionSummary
impl Send for ConnectionSummary
impl Sync for ConnectionSummary
impl Unpin for ConnectionSummary
impl !UnwindSafe for ConnectionSummary
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