/// Provides high level API for reading from a stream. pubmod stream { pubusecrate::read::stream::*;
} /// Types for creating ZIP archives. pubmod write { usecrate::write::{FileOptionExtension, FileOptions}; /// Unstable methods for [`FileOptions`]. pubtrait FileOptionsExt { /// Write the file with the given password using the deprecated ZipCrypto algorithm. /// /// This is not recommended for new archives, as ZipCrypto is not secure. fn with_deprecated_encryption(self, password: &[u8]) -> Self;
} impl<'k, T: FileOptionExtension> FileOptionsExt for FileOptions<'k, T> { fn with_deprecated_encryption(self, password: &[u8]) -> FileOptions<'static, T> { self.with_deprecated_encryption(password)
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.