docs: remove clutter from doctest
This commit is contained in:
parent
25d479e65d
commit
9d978e3c51
1 changed files with 10 additions and 13 deletions
23
src/read.rs
23
src/read.rs
|
@ -32,21 +32,18 @@ mod ffi {
|
||||||
/// ZIP archive reader
|
/// ZIP archive reader
|
||||||
///
|
///
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// # use std::io::prelude::*;
|
/// use std::io::prelude::*;
|
||||||
/// # fn main() -> zip::result::ZipResult<()> {
|
/// fn list_zip_contents(reader: impl Read + Seek) -> zip::result::ZipResult<()> {
|
||||||
/// # let buf: &[u8] = &[0u8; 128];
|
/// let mut zip = zip::ZipArchive::new(reader)?;
|
||||||
/// # let mut reader = std::io::Cursor::new(buf);
|
|
||||||
/// # let mut stdout = std::io::stdout();
|
|
||||||
/// # let mut stdout = stdout.lock();
|
|
||||||
/// let mut zip = zip::ZipArchive::new(reader)?;
|
|
||||||
///
|
///
|
||||||
/// for i in 0..zip.len() {
|
/// for i in 0..zip.len() {
|
||||||
/// let mut file = zip.by_index(i)?;
|
/// let mut file = zip.by_index(i)?;
|
||||||
/// println!("Filename: {}", file.name());
|
/// println!("Filename: {}", file.name());
|
||||||
/// std::io::copy(&mut file, &mut stdout);
|
/// std::io::copy(&mut file, &mut std::io::stdout());
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// Ok(())
|
||||||
/// }
|
/// }
|
||||||
/// # Ok(())
|
|
||||||
/// # }
|
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub struct ZipArchive<R: Read + io::Seek> {
|
pub struct ZipArchive<R: Read + io::Seek> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue