We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e169e32 commit 98ae744Copy full SHA for 98ae744
1 file changed
lib/src/archive/read.rs
@@ -121,20 +121,6 @@ impl<R: Read> Archive<R> {
121
RawEntries(self)
122
}
123
124
- /// Returns an iterator over the entries in the archive, excluding entries in solid mode.
125
- ///
126
- /// # Deprecated
127
128
- /// Use [`Archive::entries()`] followed by `skip_solid()` instead.
129
- #[inline]
130
- #[deprecated(
131
- since = "0.28.1",
132
- note = "Use `Archive::entries().skip_solid()` chain instead"
133
- )]
134
- pub fn entries_skip_solid(&mut self) -> impl Iterator<Item = io::Result<NormalEntry>> + '_ {
135
- self.entries().skip_solid()
136
- }
137
-
138
/// Returns an iterator over entries including those in solid mode, decrypting
139
/// solid entries with the provided password.
140
#[inline]
0 commit comments