From c9139754ddf87ec3fc064cf89eacd8178d2d313f Mon Sep 17 00:00:00 2001 From: divagant-martian Date: Thu, 12 Feb 2026 20:55:29 +0000 Subject: [PATCH] deploy: 06bb11ebfe3ac36953cb3c929e5815bb8b92dc9d --- pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html b/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html index 85b05f1c7..9ce4118e1 100644 --- a/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html +++ b/pr/423/docs/src/iroh_quinn_proto/connection/qlog.rs.html @@ -1088,10 +1088,10 @@ 1088impl From<EncryptionLevel> for PacketType { 1089 fn from(encryption_level: EncryptionLevel) -> Self { 1090 match encryption_level { -1091 EncryptionLevel::Initial => PacketType::Initial, -1092 EncryptionLevel::Handshake => PacketType::Handshake, -1093 EncryptionLevel::ZeroRtt => PacketType::ZeroRtt, -1094 EncryptionLevel::OneRtt => PacketType::OneRtt, +1091 EncryptionLevel::Initial => Self::Initial, +1092 EncryptionLevel::Handshake => Self::Handshake, +1093 EncryptionLevel::ZeroRtt => Self::ZeroRtt, +1094 EncryptionLevel::OneRtt => Self::OneRtt, 1095 } 1096 } 1097}