style: fix rustdoc::broken_intra_doc_links (#1068)

This commit is contained in:
Paolo Barbolini
2025-03-09 07:55:15 +01:00
committed by GitHub
parent 0f9455715c
commit fdf0346556

View File

@@ -141,8 +141,8 @@ pub trait Transport {
fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result<Self::Ok, Self::Error>; fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result<Self::Ok, Self::Error>;
/// Shuts down the transport. Future calls to [`send`] and [`send_raw`] might /// Shuts down the transport. Future calls to [`Self::send`] and
/// fail. /// [`Self::send_raw`] might fail.
fn shutdown(&self) {} fn shutdown(&self) {}
} }
@@ -171,7 +171,7 @@ pub trait AsyncTransport {
async fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result<Self::Ok, Self::Error>; async fn send_raw(&self, envelope: &Envelope, email: &[u8]) -> Result<Self::Ok, Self::Error>;
/// Shuts down the transport. Future calls to [`send`] and [`send_raw`] might /// Shuts down the transport. Future calls to [`Self::send`] and
/// fail. /// [`Self::send_raw`] might fail.
async fn shutdown(&self) {} async fn shutdown(&self) {}
} }