Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1ebad74 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Suppress some dead code warnings for DnsResolver" into main am: d2bd050b

parents a2a9806e d2bd050b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -107,6 +107,7 @@ pub struct Request {
/// HTTP/3 Response
pub struct Stream {
    /// Response headers
    #[allow(dead_code)]
    pub headers: Vec<h3::Header>,
    /// Response body
    pub data: Vec<u8>,
+1 −0
Original line number Diff line number Diff line
@@ -60,6 +60,7 @@ pub enum Status {
    /// Network is believed to be working
    Live,
    /// Network is broken, reason as argument
    #[allow(dead_code)]
    Failed(Arc<anyhow::Error>),
}