From 61f643e47e35e1bbb0bb725c44aa144efbc9bd95 Mon Sep 17 00:00:00 2001 From: Attila Repka Date: Thu, 1 Jun 2023 21:05:17 +0200 Subject: [PATCH] docs: add missing docs for ext_header --- src/entry.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/entry.rs b/src/entry.rs index 61bb8a61..f44b3cc1 100644 --- a/src/entry.rs +++ b/src/entry.rs @@ -145,7 +145,9 @@ impl<'a, R: Read> Entry<'a, R> { &self.fields.header } - #[allow(missing_docs)] + /// Returns access to the extended header of this entry in the archive. + /// + /// This provides access to the underlying extended sparse headers. pub fn ext_header(&self) -> &GnuExtSparseHeader { &self.fields.ext_header }