doc: Fix formatting for unsafe function
This commit is contained in:
parent
8040a044c3
commit
ac6dfed15a
1 changed files with 3 additions and 1 deletions
|
@ -654,7 +654,9 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
|
|
||||||
/// Set the file length and crc32 manually.
|
/// Set the file length and crc32 manually.
|
||||||
///
|
///
|
||||||
/// SAFETY: This overwrites the internal crc32 calculation. It should only be used in case
|
/// # Safety
|
||||||
|
///
|
||||||
|
/// This overwrites the internal crc32 calculation. It should only be used in case
|
||||||
/// the underlying [Write] is written independently and you need to adjust the zip metadata.
|
/// the underlying [Write] is written independently and you need to adjust the zip metadata.
|
||||||
pub unsafe fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> {
|
pub unsafe fn set_file_metadata(&mut self, length: u64, crc32: u32) -> ZipResult<()> {
|
||||||
if !self.writing_to_file {
|
if !self.writing_to_file {
|
||||||
|
|
Loading…
Add table
Reference in a new issue